Function: helpful--without-advice
helpful--without-advice is a byte-compiled function defined in
helpful.el.
Signature
(helpful--without-advice SYM)
Documentation
Given advised function SYM, return the function object without the advice. Assumes function has been loaded.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--without-advice (sym)
"Given advised function SYM, return the function object
without the advice. Assumes function has been loaded."
(advice--cd*r
(advice--symbol-function sym)))