* lisp/org/ox-texinfo.el (org-texinfo-template): Fix Info format (bug#74844)
This commit is contained in:
parent
8b6c6cffd1
commit
55303a6bc0
1 changed files with 2 additions and 2 deletions
|
@ -826,9 +826,9 @@ 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)))
|
||||
(dn
|
||||
(format "* %s: (%s)." dn (or file dn)))
|
||||
(t (format "* %s." file)))))
|
||||
(t (format "* (%s)." file)))))
|
||||
(concat "@dircategory " dircat "\n"
|
||||
"@direntry\n"
|
||||
(let ((dirdesc
|
||||
|
|
Loading…
Add table
Reference in a new issue