diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-31 03:31:01 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-31 03:31:08 +0100 |
commit | 7b137370558e8924a8282880bdffe84ff8324d28 (patch) | |
tree | 7188568da612b55733f51d4ec8d476620926a856 /lisp/emacs-lisp | |
parent | 0a34aeee7e0fbc30a40ecd4191aba0b70e13cf8a (diff) | |
download | emacs-7b137370558e8924a8282880bdffe84ff8324d28.tar.gz emacs-7b137370558e8924a8282880bdffe84ff8324d28.tar.bz2 emacs-7b137370558e8924a8282880bdffe84ff8324d28.zip |
Fix with-suppressed-warnings edebug spec
* lisp/emacs-lisp/byte-run.el (with-suppressed-warnings): Fix
edebug spec.
Diffstat (limited to 'lisp/emacs-lisp')
-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 fedc10cea44..110f7e4abf4 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -656,7 +656,7 @@ For the `mapcar' case, only the `mapcar' function can be used in the symbol list. For `suspicious', only `set-buffer' can be used." ;; Note: during compilation, this definition is overridden by the one in ;; byte-compile-initial-macro-environment. - (declare (debug (sexp &optional body)) (indent 1)) + (declare (debug (sexp body)) (indent 1)) (if (not (and (featurep 'macroexp) (boundp 'byte-compile--suppressed-warnings))) ;; If `macroexp' is not yet loaded, we're in the middle of |