Variable: delayed-warnings-hook

delayed-warnings-hook is a variable defined in subr.el.gz.

Value

(collapse-delayed-warnings
 display-delayed-warnings)

Documentation

Normal hook run to process and display delayed warnings.

By default, this hook contains functions to consolidate the warnings listed in delayed-warnings-list, display them, and set delayed-warnings-list back to nil.

View in manual

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
;; At present this is used only for Emacs internals.
;; Ref https://lists.gnu.org/r/emacs-devel/2012-02/msg00085.html
(defvar delayed-warnings-hook '(collapse-delayed-warnings
                                display-delayed-warnings)
  "Normal hook run to process and display delayed warnings.
By default, this hook contains functions to consolidate the
warnings listed in `delayed-warnings-list', display them, and set
`delayed-warnings-list' back to nil.")