mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Fix variable types in warnings-suppress
* lisp/emacs-lisp/warnings.el (warnings-suppress): The type of these user options is a list of lists of symbols, not a list of symbols (bug#57183). Copyright-paperwork-exempt: yes
This commit is contained in:
parent
20b8ac5723
commit
d5ee49c25c
1 changed files with 2 additions and 2 deletions
|
|
@ -220,10 +220,10 @@ SUPPRESS-LIST is the list of kinds of warnings to suppress."
|
|||
(?q "quit and do nothing"))))
|
||||
(?y
|
||||
(customize-save-variable 'warning-suppress-log-types
|
||||
(cons type warning-suppress-log-types)))
|
||||
(cons (list type) warning-suppress-log-types)))
|
||||
(?n
|
||||
(customize-save-variable 'warning-suppress-types
|
||||
(cons type warning-suppress-types)))
|
||||
(cons (list type) warning-suppress-types)))
|
||||
(_ (message "Exiting"))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue