Function: helpful--describe-exactly

helpful--describe-exactly is a byte-compiled function defined in helpful.el.

Signature

(helpful--describe-exactly BUTTON)

Documentation

Describe the symbol that this BUTTON represents.

This differs from helpful--describe because here we know whether the symbol represents a variable or a callable.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--describe-exactly (button)
  "Describe the symbol that this BUTTON represents.
This differs from `helpful--describe' because here we know
whether the symbol represents a variable or a callable."
  (let ((sym (button-get button 'symbol))
        (callable-p (button-get button 'callable-p)))
    (if callable-p
        (helpful-callable sym)
      (helpful-variable sym))))