Преглед на файлове

org-man.el: Fix code typo

* contrib/lisp/org-man.el (org-man-export): Fix code typo.
Nicolas Goaziou преди 12 години
родител
ревизия
de4d86c080
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      contrib/lisp/org-man.el

+ 1 - 1
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))))