summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2019-10-13 09:33:44 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-10-13 09:33:44 +0200
commit049f9f89d05b98bdd88aee1dcc5ad1a4e65be699 (patch)
tree50c87e5c037a4b5da2b97d18aa0f9c314d04f10f
parent773536210162da74fd1407aba553f442ae1e9057 (diff)
downloadorg-mode-049f9f89d05b98bdd88aee1dcc5ad1a4e65be699.tar.gz
ol: Fix opening help links
* lisp/ol.el ("help"): Fix typo in function opening help links.
-rw-r--r--lisp/ol.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ol.el b/lisp/ol.el
index 207e40e..95a7e91 100644
--- a/lisp/ol.el
+++ b/lisp/ol.el
@@ -1246,7 +1246,7 @@ PATH is a symbol name, as a string."
((and (pred boundp) function) (describe-variable function))
(name (user-error "Unknown function or variable: %s" name))))
-(org-link-set-parameters "help" :follow #'org-link--open-elisp)
+(org-link-set-parameters "help" :follow #'org-link--open-help)
;;;; "http", "https", "mailto", "ftp", and "news" link types
(dolist (scheme '("ftp" "http" "https" "mailto" "news"))