From 8305c9381efaf3ad5f95ee96bb15209f3d687707 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 7 Jun 2017 12:23:20 +0200 Subject: [PATCH] ox-texinfo: Remove spurious blank line in fixed width areas * lisp/ox-texinfo.el (org-texinfo-fixed-width): Remove spurious blank line. --- lisp/ox-texinfo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index ae11520c0..e5506a1c5 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -762,7 +762,7 @@ CONTENTS is nil. INFO is a plist holding contextual information." (defun org-texinfo-fixed-width (fixed-width _contents _info) "Transcode a FIXED-WIDTH element from Org to Texinfo. CONTENTS is nil. INFO is a plist holding contextual information." - (format "@example\n%s\n@end example" + (format "@example\n%s@end example" (org-remove-indentation (org-texinfo--sanitize-content (org-element-property :value fixed-width)))))