]> git.eshelyaron.com Git - emacs.git/commitdiff
Include `all` in `byte-compile-warnings` defcustom type
authorMattias Engdegård <mattiase@acm.org>
Fri, 29 Sep 2023 13:00:45 +0000 (15:00 +0200)
committerMattias 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

index 387d7ef4de1e7c71db144adfc8b2fcbd008d075e..6188c0b74fd7c3ebabf3d31ef50e22a0cd47c67e 100644 (file)
@@ -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))))