Function: org-link--open-help

org-link--open-help is a byte-compiled function defined in ol.el.gz.

Signature

(org-link--open-help PATH _)

Documentation

Open a "help" type link.

PATH is a symbol name, as a string.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
;;;; "help" link type
(defun org-link--open-help (path _)
  "Open a \"help\" type link.
PATH is a symbol name, as a string."
  (pcase (intern path)
    ((and (pred fboundp) function) (describe-function function))
    ((and (pred boundp) variable) (describe-variable variable))
    (name (user-error "Unknown function or variable: %s" name))))