; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form.

This commit is contained in:
Eli Zaretskii 2023-05-18 17:20:36 +03:00
parent f8d9e40d2c
commit 3bc5efb87e

View file

@ -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"))