Function: org-link--store-help
org-link--store-help is a byte-compiled function defined in ol.el.gz.
Signature
(org-link--store-help)
Documentation
Store "help" type link.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defun org-link--store-help ()
"Store \"help\" type link."
(when (eq major-mode 'help-mode)
(let ((symbol
(save-excursion
(goto-char (point-min))
;; In case the help is about the key-binding, store the
;; function instead.
(search-forward "runs the command " (line-end-position) t)
(read (current-buffer)))))
(org-link-store-props :type "help"
:link (format "help:%s" symbol)
:description nil))))