diff options
author | Andrea Corallo <acorallo@gnu.org> | 2024-02-29 11:04:07 +0100 |
---|---|---|
committer | Andrea Corallo <acorallo@gnu.org> | 2024-02-29 11:26:08 +0100 |
commit | b8ba3cb7f00504ec58fda867a44631cc14b3343d (patch) | |
tree | bee6ac77ddf2e7d1299610792c74c26a13c2c8f6 /lisp/emacs-lisp/comp-run.el | |
parent | 862dfef88d8e62d12bac3ca2e44e035a2ff5b298 (diff) | |
download | emacs-b8ba3cb7f00504ec58fda867a44631cc14b3343d.tar.gz emacs-b8ba3cb7f00504ec58fda867a44631cc14b3343d.tar.bz2 emacs-b8ba3cb7f00504ec58fda867a44631cc14b3343d.zip |
* Improve 'native-comp-async-report-warnings-errors' tag
* lisp/emacs-lisp/comp-run.el (native-comp-async-report-warnings-errors):
Improve tag.
Diffstat (limited to 'lisp/emacs-lisp/comp-run.el')
-rw-r--r-- | lisp/emacs-lisp/comp-run.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/comp-run.el b/lisp/emacs-lisp/comp-run.el index 8fcbe31cf0b..c78b5ece9bd 100644 --- a/lisp/emacs-lisp/comp-run.el +++ b/lisp/emacs-lisp/comp-run.el @@ -72,9 +72,9 @@ Set this variable to nil to suppress warnings altogether, or to the symbol `silent' to log warnings but not pop up the *Warnings* buffer." :type '(choice - (const :tag "Do not report warnings" nil) - (const :tag "Report and display warnings" t) - (const :tag "Report but do not display warnings" silent)) + (const :tag "Do not report warnings/errors" nil) + (const :tag "Report and display warnings/errors" t) + (const :tag "Report but do not display warnings/errors" silent)) :version "28.1") (defcustom native-comp-always-compile nil |