Function: helpful--manual
helpful--manual is a byte-compiled function defined in helpful.el.
Signature
(helpful--manual BUTTON)
Documentation
Open the manual for the system that this BUTTON represents.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--manual (button)
"Open the manual for the system that this BUTTON represents."
(let ((sym (button-get button 'symbol)))
(info-lookup 'symbol sym #'emacs-lisp-mode)))