* lisp/org/ox-texinfo.el (org-texinfo-template): Fix direntry format
Apparently I was confused and `* FILE. DESCRIPTION` is not a valid format, so always use the longer form.
This commit is contained in:
parent
69a61f721d
commit
5923d8ebef
1 changed files with 1 additions and 3 deletions
|
@ -826,9 +826,7 @@ holding export options."
|
|||
;; `dn' is presumed to be just the DIRNAME part, so generate
|
||||
;; either `* DIRNAME: (FILENAME).' or `* FILENAME.', whichever
|
||||
;; is shortest.
|
||||
((and dn (not (equal dn file)))
|
||||
(format "* %s: (%s)." dn (or file dn)))
|
||||
(t (format "* %s." file)))))
|
||||
(t (format "* %s: (%s)." dn (or file dn))))))
|
||||
(concat "@dircategory " dircat "\n"
|
||||
"@direntry\n"
|
||||
(let ((dirdesc
|
||||
|
|
Loading…
Add table
Reference in a new issue