Function: helpful--disassemble

helpful--disassemble is a byte-compiled function defined in helpful.el.

Signature

(helpful--disassemble BUTTON)

Documentation

Disassemble the current symbol.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--disassemble (button)
  "Disassemble the current symbol."
  ;; `disassemble' can handle both symbols (e.g. 'when) and raw
  ;; byte-code objects.
  (disassemble (button-get button 'object)))