summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-04-16 12:51:08 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-04-16 12:51:08 +0200
commitde4d86c080802fe89c924c8f449fc1ca089ad1f6 (patch)
treee9819c3e0646ffe5168087d616d771d7e3defbb8
parent7c2b7b9eef1c3bbb03e0f0772e49522dbec92836 (diff)
downloadorg-mode-de4d86c080802fe89c924c8f449fc1ca089ad1f6.tar.gz
org-man.el: Fix code typo
* contrib/lisp/org-man.el (org-man-export): Fix code typo.
-rw-r--r--contrib/lisp/org-man.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/lisp/org-man.el b/contrib/lisp/org-man.el
index 4c395e6..a9db83d 100644
--- a/contrib/lisp/org-man.el
+++ b/contrib/lisp/org-man.el
@@ -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))))