Variable: native-comp-async-warnings-errors-kind
native-comp-async-warnings-errors-kind is a customizable variable
defined in comp-run.el.gz.
Value
important
Documentation
Which kind of warnings and errors to report from async native compilation.
Setting this variable to important (the default) will report
only important warnings and all errors.
Setting this variable to all will report all warnings and
errors.
This variable was added, or its default value changed, in Emacs 30.1.
Probably introduced at or before Emacs version 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-run.el.gz
(defcustom native-comp-async-warnings-errors-kind 'important
"Which kind of warnings and errors to report from async native compilation.
Setting this variable to `important' (the default) will report
only important warnings and all errors.
Setting this variable to `all' will report all warnings and
errors."
:type '(choice
(const :tag "Report all warnings/errors" all)
(const :tag "Report important warnings and all errors" important))
:version "30.1")