* textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert

unnecessary spaces.

Fixes: debbugs:8987
This commit is contained in:
Richard Kim 2011-07-03 18:11:37 +02:00 committed by Lars Magne Ingebrigtsen
parent 3487ca85e8
commit 9a51c6c761
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
* textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
unnecessary spaces (bug#8987).
2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
* net/network-stream.el (open-network-stream): Use the

View file

@ -687,7 +687,7 @@ is the menu entry name, and the cdr of P is the node name."
(insert (format "%s: %s." (car node-part) (cdr node-part)))))
;; Insert the description, if present.
(when (cdr menu)
(when (> (length (cdr menu)) 0)
;; Move to right place.
(indent-to texinfo-column-for-description 2)
;; Insert description.