From: Eli Zaretskii Date: Thu, 18 May 2023 14:20:36 +0000 (+0300) Subject: ; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form. X-Git-Tag: emacs-29.0.92~133 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3bc5efb87e5ac9b7068e71307466b2d0220e92fb;p=emacs.git ; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form. --- diff --git a/lisp/emacs-lisp/benchmark.el b/lisp/emacs-lisp/benchmark.el index dc7889c40a0..e50b8524f29 100644 --- a/lisp/emacs-lisp/benchmark.el +++ b/lisp/emacs-lisp/benchmark.el @@ -152,7 +152,7 @@ to call it without any argument." (defmacro benchmark-progn (&rest body) "Evaluate BODY and message the time taken. The return value is the value of the final form in BODY." - (declare (debug body) (indent 0)) + (declare (debug t) (indent 0)) (let ((value (make-symbol "value")) (start (make-symbol "start")) (gcs (make-symbol "gcs"))