Function: ad-update-all

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

Signature

(ad-update-all &optional COMPILE)

Documentation

Update all currently advised functions.

With prefix argument, COMPILE resulting advised definitions.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/advice.el.gz
(defun ad-update-all (&optional compile)
  "Update all currently advised functions.
With prefix argument, COMPILE resulting advised definitions."
  (interactive "P")
  (ad-do-advised-functions (function)
    (ad-update function compile)))