Browse Source

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

* lisp/ox-texinfo.el (org-texinfo-fixed-width): Remove spurious blank
  line.
Nicolas Goaziou 8 years ago
parent
commit
8305c9381e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ox-texinfo.el

+ 1 - 1
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)))))