Function: helpful--make-tracing-button

helpful--make-tracing-button is a byte-compiled function defined in helpful.el.

Signature

(helpful--make-tracing-button SYM)

Documentation

Make tracing button for SYM.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--make-tracing-button (sym)
  "Make tracing button for SYM."
  (helpful--button
   (format "%s tracing"
           (if (trace-is-traced sym)
               "Disable" "Enable"))
   'helpful-trace-button
   'symbol sym))