]> git.eshelyaron.com Git - emacs.git/commitdiff
* textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
authorRichard Kim <emacs18@gmail.com>
Sun, 3 Jul 2011 16:11:37 +0000 (18:11 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 3 Jul 2011 16:11:37 +0000 (18:11 +0200)
unnecessary spaces.

Fixes: debbugs:8987
lisp/ChangeLog
lisp/textmodes/texnfo-upd.el

index 09e0509c8024d48c6f50046a8cd7b5aeaf393601..6949d7768210953e370ec30eb5652770d9839a0a 100644 (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
index 12a3e2a620b0382fc21f4815f8bdb2b2cf8f0a15..047bba72ccda83c14378a5f808db9692bddc938b 100644 (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.