# HG changeset patch # User Gerd Moellmann # Date 956861893 0 # Node ID 14cc47ddd47a2c3c88c6cae673b8b9b2a49885cc # Parent 192cbf5dbea2576b17f3c5436eed8630ab711045 (texinfo-format-xref): Don't try to insert nil. diff -r 192cbf5dbea2 -r 14cc47ddd47a lisp/textmodes/texinfmt.el --- 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 ()