Variable: warning-minimum-level

warning-minimum-level is a customizable variable defined in warnings.el.gz.

Value

:warning

Documentation

Minimum severity level for displaying the warning buffer.

If a warning's severity level is lower than this, the warning is logged in the warnings buffer, but the buffer is not immediately displayed. See also warning-minimum-log-level.

This variable was added, or its default value changed, in Emacs 22.1.

View in manual

Aliases

display-warning-minimum-level (obsolete since 28.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/warnings.el.gz
(defcustom warning-minimum-level :warning
  "Minimum severity level for displaying the warning buffer.
If a warning's severity level is lower than this,
the warning is logged in the warnings buffer, but the buffer
is not immediately displayed.  See also `warning-minimum-log-level'."
  :type '(choice (const :emergency) (const :error)
                 (const :warning) (const :debug))
  :version "22.1")