]> git.eshelyaron.com Git - emacs.git/commit
Expanded defcustom type byte-compilation warnings (bug#65852)
authorMattias Engdegård <mattiase@acm.org>
Sun, 17 Sep 2023 10:49:40 +0000 (12:49 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sun, 17 Sep 2023 15:16:35 +0000 (17:16 +0200)
commitf8ea47ebf45c5ea0cd788667f7bdb805f42e08e0
treee494cdd6d08b6a38de3ce5d346feb2eb3f501e1c
parente0070fc574a8621b2fbb1aaca678b974a3dc5fd5
Expanded defcustom type byte-compilation warnings (bug#65852)

Warn about more kinds of mistakes in :type arguments of `defcustom`
and `define-widget`.  These include:

- misplaced keyword args, as in (const red :tag "A reddish hue")
- missing subordinate types, as in (repeat :tag "List of names")
  or (choice list string)
- duplicated values, as in (choice (const yes) (const yes))
- misplaced `other` member, as in
  (choice (const red) (other nil) (const blue))
- various type name mistakes, as in (vector bool functionp)

* lisp/emacs-lisp/bytecomp.el (byte-compile--defcustom-type-quoted)
(byte-compile-nogroup-warn): Remove.
(byte-compile-normal-call): Remove call to the above.
(bytecomp--cus-warn, bytecomp--check-cus-type)
(bytecomp--custom-declare): New.
lisp/emacs-lisp/bytecomp.el
test/lisp/emacs-lisp/bytecomp-tests.el