changeset 28740:14cc47ddd47a

(texinfo-format-xref): Don't try to insert nil.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 27 Apr 2000 18:58:13 +0000
parents 192cbf5dbea2
children efa45c683e9a
files lisp/textmodes/texinfmt.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/texinfmt.el	Thu Apr 27 18:56:42 2000 +0000
+++ b/lisp/textmodes/texinfmt.el	Thu Apr 27 18:58:13 2000 +0000
@@ -1211,7 +1211,7 @@
         (insert (or fname (car args)) ": ")
         (if (nth 3 args)
             (insert "(" (nth 3 args) ")"))
-        (insert (car args))))))
+        (and (car args) (insert (car args)))))))
 
 (put 'pxref 'texinfo-format 'texinfo-format-pxref)
 (defun texinfo-format-pxref ()