Function: helpful--make-edebug-button
helpful--make-edebug-button is a byte-compiled function defined in
helpful.el.
Signature
(helpful--make-edebug-button SYM)
Documentation
Make edebug button for SYM.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--make-edebug-button (sym)
"Make edebug button for SYM."
(helpful--button
(format "%s edebug"
(if (helpful--edebug-p sym)
"Disable" "Enable"))
'helpful-edebug-button
'symbol sym))