projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a89c868
)
Include `all` in `byte-compile-warnings` defcustom type
author
Mattias Engdegård
<mattiase@acm.org>
Fri, 29 Sep 2023 13:00:45 +0000
(15:00 +0200)
committer
Mattias Engdegård
<mattiase@acm.org>
Fri, 29 Sep 2023 15:59:50 +0000
(17:59 +0200)
* lisp/emacs-lisp/bytecomp.el (byte-compile-warnings):
Let "All" mean `all`, not `t`.
lisp/emacs-lisp/bytecomp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/bytecomp.el
b/lisp/emacs-lisp/bytecomp.el
index 387d7ef4de1e7c71db144adfc8b2fcbd008d075e..6188c0b74fd7c3ebabf3d31ef50e22a0cd47c67e 100644
(file)
--- a/
lisp/emacs-lisp/bytecomp.el
+++ b/
lisp/emacs-lisp/bytecomp.el
@@
-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))))