]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form.
authorEli Zaretskii <eliz@gnu.org>
Thu, 18 May 2023 14:20:36 +0000 (17:20 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 18 May 2023 14:20:36 +0000 (17:20 +0300)
lisp/emacs-lisp/benchmark.el

index dc7889c40a03a17b88be957f96e773593bebafdd..e50b8524f29083512ca85bffbaf33ac4e4edd754 100644 (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"))