emacs-orgmode
[Top][All Lists]
Advanced

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

[O] [PATCH] ox-ascii extra blank before table caption


From: Rick Frankel
Subject: [O] [PATCH] ox-ascii extra blank before table caption
Date: Fri, 02 Aug 2013 13:26:58 -0400
User-agent: Roundcube Webmail/0.9.0

ox-ascii is putting a blank line between a table and a following caption.
It is not doing this for listing captions so, IMHO, it is a bug.

Here is a (very small) patch which fixes the problem.

diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el
index 59d0152..3baf4bd 100644
--- a/lisp/ox-ascii.el
+++ b/lisp/ox-ascii.el
@@ -1658,7 +1658,7 @@ contextual information."
(t (org-remove-indentation (org-element-property :value table))))
;; Possible add a caption string below.
(when (and caption (not org-ascii-caption-above))
-       (concat "\n" caption)))))
+       caption))))


rick



reply via email to

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