Include all
in byte-compile-warnings
defcustom type
* lisp/emacs-lisp/bytecomp.el (byte-compile-warnings): Let "All" mean `all`, not `t`.
This commit is contained in:
parent
a89c86888c
commit
5959a28cce
1 changed files with 2 additions and 1 deletions
|
@ -339,7 +339,8 @@ suppress. For example, (not free-vars) will suppress the `free-vars' warning.
|
|||
The t value means \"all non experimental warning types\", and
|
||||
excludes the types in `byte-compile--emacs-build-warning-types'.
|
||||
A value of `all' really means all."
|
||||
:type `(choice (const :tag "All" t)
|
||||
:type `(choice (const :tag "Default selection" t)
|
||||
(const :tag "All" all)
|
||||
(set :menu-tag "Some"
|
||||
,@(mapcar (lambda (x) `(const ,x))
|
||||
byte-compile-warning-types))))
|
||||
|
|
Loading…
Add table
Reference in a new issue