summaryrefslogtreecommitdiff
path: root/lisp/org-exp.el
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-02-16 23:47:43 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2012-02-17 00:04:34 +0100
commitcf87d15483be1395f0f06cdf7df3781c45221e51 (patch)
tree25d3cd233df49d2cfb845462d12214ed5e7cbe72 /lisp/org-exp.el
parent3e18c9cad798a26aa2e01e4d0c93ea854fb000e8 (diff)
org-list: Remove two defcustoms
* lisp/org-list.el (org-list-ending-method, org-list-end-regexp): Removed variables. (org-in-item-p, org-list-separating-blank-lines-number, org-list-parse-list, org-list-struct): Apply changes. * lisp/org-exp.el (org-export-mark-list-end, org-export-mark-list-properties): Apply changes. * lisp/org-latex.el (org-export-latex-lists): Apply changes. * doc/org.texi (Plain lists): Document removal.
Diffstat (limited to 'lisp/org-exp.el')
-rw-r--r--lisp/org-exp.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/org-exp.el b/lisp/org-exp.el
index d9b5adc2b..8e90ab38c 100644
--- a/lisp/org-exp.el
+++ b/lisp/org-exp.el
@@ -1824,8 +1824,7 @@ These special cookies will later be interpreted by the backend."
(top (point-at-bol))
(top-ind (org-list-get-ind top struct)))
(goto-char bottom)
- (when (and (not (eq org-list-ending-method 'indent))
- (not (looking-at "[ \t]*$"))
+ (when (and (not (looking-at "[ \t]*$"))
(looking-at org-list-end-re))
(replace-match ""))
(unless (bolp) (insert "\n"))
@@ -1883,8 +1882,7 @@ These special properties will later be interpreted by the backend."
;; useful to line processing exporters.
(goto-char bottom)
(when (or (looking-at "^ORG-LIST-END-MARKER\n")
- (and (not (eq org-list-ending-method 'indent))
- (not (looking-at "[ \t]*$"))
+ (and (not (looking-at "[ \t]*$"))
(looking-at org-list-end-re)))
(replace-match ""))
(unless (bolp) (insert "\n"))