diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-05-29 19:22:00 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-05-29 19:22:00 +0000 |
commit | 95012c62d5d33b2f05538b8163322c83cf3cfb24 (patch) | |
tree | 257174735607a9eb5837ba10248545b1f4d8edc5 /lisp/textmodes/texinfmt.el | |
parent | 1faf64740a429a34daf61479b49b17bcec5d4b7e (diff) | |
download | emacs-95012c62d5d33b2f05538b8163322c83cf3cfb24.tar.gz emacs-95012c62d5d33b2f05538b8163322c83cf3cfb24.tar.bz2 emacs-95012c62d5d33b2f05538b8163322c83cf3cfb24.zip |
(texinfo-format-direntry): Avoid blank line.
Diffstat (limited to 'lisp/textmodes/texinfmt.el')
-rw-r--r-- | lisp/textmodes/texinfmt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 262e42c6f9e..aeaa835d6db 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -2473,7 +2473,7 @@ If used within a line, follow `@bullet' with braces." (defun texinfo-format-direntry () (texinfo-push-stack 'direntry nil) (texinfo-discard-line) - (insert "START-INFO-DIR-ENTRY\n\n")) + (insert "START-INFO-DIR-ENTRY\n")) (put 'direntry 'texinfo-end 'texinfo-end-direntry) (defun texinfo-end-direntry () |