emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] [PATCH] Consider environments that end at eob.


From: David Maus
Subject: [Orgmode] [PATCH] Consider environments that end at eob.
Date: Tue, 15 Jun 2010 17:20:39 +0200

* org-exp.el (org-export-mark-blockquote-verse-center):
  Consider environments that end at eob.
---
 lisp/org-exp.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/org-exp.el b/lisp/org-exp.el
index 915e1f5..502f253 100644
--- a/lisp/org-exp.el
+++ b/lisp/org-exp.el
@@ -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"
-- 
1.7.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]