(texinfo-format-xref): Don't try to insert nil.
This commit is contained in:
parent
fe20aba8c7
commit
11595aa959
1 changed files with 1 additions and 1 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Reference in a new issue