From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/elisp/warning-options.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 devdocs/elisp/warning-options.html (limited to 'devdocs/elisp/warning-options.html') diff --git a/devdocs/elisp/warning-options.html b/devdocs/elisp/warning-options.html new file mode 100644 index 00000000..9976fd70 --- /dev/null +++ b/devdocs/elisp/warning-options.html @@ -0,0 +1,14 @@ +

Warning Options

These variables are used by users to control what happens when a Lisp program reports a warning.

User Option: warning-minimum-level +

This user option specifies the minimum severity level that should be shown immediately to the user. The default is :warning, which means to immediately display all warnings except :debug warnings.

+
User Option: warning-minimum-log-level +

This user option specifies the minimum severity level that should be logged in the warnings buffer. The default is :warning, which means to log all warnings except :debug warnings.

+
User Option: warning-suppress-types +

This list specifies which warning types should not be displayed immediately for the user. Each element of the list should be a list of symbols. If its elements match the first elements in a warning type, then that warning is not displayed immediately.

+
User Option: warning-suppress-log-types +

This list specifies which warning types should not be logged in the warnings buffer. Each element of the list should be a list of symbols. If it matches the first few elements in a warning type, then that warning is not logged.

+
+

+ Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
+ https://www.gnu.org/software/emacs/manual/html_node/elisp/Warning-Options.html +

+
-- cgit v1.2.3