1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-22 07:09:47 +00:00

org-man.el: Fix code typo

* contrib/lisp/org-man.el (org-man-export): Fix code typo.
This commit is contained in:
Nicolas Goaziou 2013-04-16 12:51:08 +02:00
parent 7c2b7b9eef
commit de4d86c080

View File

@ -64,7 +64,7 @@ PATH should be a topic that can be thrown at the man command."
(cond
((eq format 'html) (format "<a target=\"_blank\" href=\"%s\">%s</a>" path desc))
((eq format 'latex) (format "\\href{%s}{%s}" path desc))
((eq format 'texinfo (format "@uref{%s,%s}" path desc)))
((eq format 'texinfo) (format "@uref{%s,%s}" path desc))
((eq format 'ascii) (format "%s (%s)" desc path))
(t path))))