* org-exp.el (org-export-mark-blockquote-verse-center):

Consider environments that end at eob.

Thanks to David Maus for this patch.
This commit is contained in:
Bastien Guerry 2010-06-16 16:08:23 +02:00
parent 476d24320c
commit 359a6bd8be

View file

@ -1567,7 +1567,7 @@ These special cookies will later be interpreted by the backend."
(setq beg (match-beginning 0)
beg1 (1+ (match-end 0)))
(when (re-search-forward (concat "^[ \t]*#\\+end_" type "\\>.*") nil t)
(setq end (1+ (point-at-eol))
(setq end (+ (point-at-eol) (if (looking-at "\n$") 1 0))
end1 (1- (match-beginning 0)))
(setq content (org-remove-indentation (buffer-substring beg1 end1)))
(setq content (concat "ORG-" (upcase t1) "-START\n"