diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-04-27 18:58:13 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-04-27 18:58:13 +0000 |
commit | 11595aa959b567dfe9b06e24d43c6cd061e0a0eb (patch) | |
tree | 73c4a44bd3347213025bf3b0fb7760b5e00b1786 /lisp/textmodes/texinfmt.el | |
parent | fe20aba8c7a4d9ae7f611c4908c7cc118d3cc762 (diff) | |
download | emacs-11595aa959b567dfe9b06e24d43c6cd061e0a0eb.tar.gz |
(texinfo-format-xref): Don't try to insert nil.
Diffstat (limited to 'lisp/textmodes/texinfmt.el')
-rw-r--r-- | lisp/textmodes/texinfmt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index f8b05f37d5d..822631e039b 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -1211,7 +1211,7 @@ Leave point after argument." (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 () |