diff lisp/textmodes/texinfmt.el @ 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 650eddd41858
children 6619db0066d9
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 ()