Function: ad-unadvise-all

ad-unadvise-all is an interactive and byte-compiled function defined in advice.el.gz.

Signature

(ad-unadvise-all)

Documentation

Unadvise all currently advised functions.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/advice.el.gz
(defun ad-unadvise-all ()
  "Unadvise all currently advised functions."
  (interactive)
  (ad-do-advised-functions (function)
    (ad-unadvise function)))