Open Wilfred opened 7 years ago
Hi, maybe we can use this function to get a functions's advices list:
(defun yf/advice-list (symbol)
(let (result)
(advice-mapc
(lambda (ad props)
(push ad result))
symbol)
(nreverse result)))
Currently, we just say 'is advised'. See
eval-defun
for an example.