0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 19:37:52 +00:00

ox-texinfo: Remove spurious blank line in fixed width areas

* lisp/ox-texinfo.el (org-texinfo-fixed-width): Remove spurious blank
  line.
This commit is contained in:
Nicolas Goaziou 2017-06-07 12:23:20 +02:00
parent b13e672977
commit 8305c9381e

View file

@ -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)))))