summaryrefslogtreecommitdiff
path: root/lisp/org/org-info.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/org/org-info.el')
-rw-r--r--lisp/org/org-info.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-info.el b/lisp/org/org-info.el
index 6dde36ceba1..390db209d30 100644
--- a/lisp/org/org-info.el
+++ b/lisp/org/org-info.el
@@ -133,12 +133,12 @@ See `org-link-parameters' for details about PATH, DESC and FORMAT."
(manual (car parts))
(node (or (nth 1 parts) "Top")))
(pcase format
- (`html
+ ('html
(format "<a href=\"%s#%s\">%s</a>"
(org-info-map-html-url manual)
(org-info--expand-node-name node)
(or desc path)))
- (`texinfo
+ ('texinfo
(let ((title (or desc "")))
(format "@ref{%s,%s,,%s,}" node title manual)))
(_ nil))))