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

2010-06-16 Thread Bastien
David Maus dm...@ictsoc.de writes:

 * org-exp.el (org-export-mark-blockquote-verse-center):
   Consider environments that end at eob.

Applied, thanks.

-- 
 Bastien

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


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

2010-06-15 Thread David Maus
* 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


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode