Function: advice-mapc
advice-mapc is a byte-compiled function defined in nadvice.el.gz.
Signature
(advice-mapc FUN SYMBOL)
Documentation
Apply FUN to every advice function in SYMBOL.
FUN is called with a two arguments: the function that was added, and the properties alist that was specified when it was added.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/nadvice.el.gz
(defun advice-mapc (fun symbol)
"Apply FUN to every advice function in SYMBOL.
FUN is called with a two arguments: the function that was added, and the
properties alist that was specified when it was added."
(advice-function-mapc fun (advice--symbol-function symbol)))