]> git.eshelyaron.com Git - emacs.git/commit
Fix warning-suppress for list type "warning type"
authorXuan Wang <code@wangxuan.name>
Fri, 29 Mar 2024 00:34:23 +0000 (20:34 -0400)
committerEshel Yaron <me@eshelyaron.com>
Sun, 7 Apr 2024 16:33:18 +0000 (18:33 +0200)
commitc5e6ab2bdd159187b325c705a1fe08af0b36fa4a
tree758a37c628c0e7cb204f6ac1e1d3f87052782825
parent7600aa6fe87d0915f7b99a3e9d99e12a1b831fda
Fix warning-suppress for list type "warning type"

Per the documentation of 'warning-suppress-types' and the
implementation of 'warning-suppress-p', a warning type can
be either a symbol or a list of symbols.  The previous
implementation could generate wrong 'warning-suppress-types':

  old behavior:
  type              warning-suppress-types
  pkg           ->    '((pkg))                  Correct
  (pkg subtype) ->    '(((pkg subtype)))        Incorrect

Now we check whether type is a cons cell first.  (Should not
use listp here, as listp returns t for nil.)

  new behavior:
  type              warning-suppress-types
  pkg           ->    '((pkg))                Correct
  (pkg subtype) ->    '((pkg subtype))        Correct

* lisp/emacs-lisp/warnings.el (warnings-suppress): Fix saving
warning types in 'warning-suppress-types'.  (Bug#70063)

Copyright-paperwork-exempt: yes
(cherry picked from commit 46b8746b38e26ae3f216f57f231f5fc8aec22873)
lisp/emacs-lisp/warnings.el