Function: helpful-macro
helpful-macro is an autoloaded, interactive and byte-compiled function
defined in helpful.el.
Signature
(helpful-macro SYMBOL)
Documentation
Show help for macro named SYMBOL.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
;;;###autoload
(defun helpful-macro (symbol)
"Show help for macro named SYMBOL."
(interactive
(list (helpful--read-symbol
"Macro: "
(helpful--callable-at-point)
#'macrop)))
(helpful--update-and-switch-buffer symbol t))