diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-22 20:14:03 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-22 20:14:03 +0200 |
commit | f14f6180b78656eec2f4dad5b79eb5da20bd0b70 (patch) | |
tree | f122ddeb791c76d085bb732a48dde539df4e720b /lisp/emacs-lisp/byte-run.el | |
parent | 3f746d44decf9f991ee2a0a0529a2bba9ad12988 (diff) | |
download | emacs-f14f6180b78656eec2f4dad5b79eb5da20bd0b70.tar.gz emacs-f14f6180b78656eec2f4dad5b79eb5da20bd0b70.tar.bz2 emacs-f14f6180b78656eec2f4dad5b79eb5da20bd0b70.zip |
Fix previous warning suppression change
* lisp/emacs-lisp/bytecomp.el (byte-compile-emit-callargs-warn)
(byte-compile-subr-wrong-args):
* lisp/emacs-lisp/byte-run.el (with-suppressed-warnings):
* lisp/cedet/semantic/fw.el (semantic-install-function-overrides):
The `wrong-args' warning is really called `callargs'.
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 2d11f350f0b..0113051c8eb 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -637,7 +637,7 @@ The warnings that can be suppressed are a subset of the warnings in `byte-compile-warning-types'; see the variable `byte-compile-warnings' for a fuller explanation of the warning types. The types that can be suppressed with this macro are -`free-vars', `callargs', `redefine', `obsolete', `wrong-args', +`free-vars', `callargs', `redefine', `obsolete', `interactive-only', `lexical', `mapcar', `constants' and `suspicious'. |