summaryrefslogtreecommitdiff
path: root/lisp/org-docbook.el
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2011-02-28 11:20:06 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2011-02-28 11:20:06 +0100
commit83b782c916cc7a7309564bed9e727d1fe610b496 (patch)
tree252e1d9b1d5b89bcfd852218200391d7bec761e9 /lisp/org-docbook.el
parent1f78cebdf46b2d9c435312c3fbcad05986e21cc3 (diff)
Change internal list end marker to avoid confusing special blocks
* lisp/org-exp.el (org-export-mark-list-end): change end marker * lisp/org-docbook.el (org-export-docbook-list-line): use new marker. * lisp/org-html.el (org-html-export-list-line): use new marker * lisp/org-latex.el (org-export-latex-lists): use new marker
Diffstat (limited to 'lisp/org-docbook.el')
-rw-r--r--lisp/org-docbook.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-docbook.el b/lisp/org-docbook.el
index 256bafec3..079229bb8 100644
--- a/lisp/org-docbook.el
+++ b/lisp/org-docbook.el
@@ -1416,7 +1416,7 @@ the alist of previous items."
;; Return modified line
body))
;; At a list ender: normal text follows: need <para>.
- ((equal "ORG-LIST-END" line)
+ ((equal "ORG-LIST-END-MARKER" line)
(org-export-docbook-open-para)
(throw 'nextline nil))
;; Not at an item: return line unchanged (side-effects only).