From 3bc5efb87e5ac9b7068e71307466b2d0220e92fb Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 18 May 2023 17:20:36 +0300 Subject: [PATCH] ; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form. --- lisp/emacs-lisp/benchmark.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")) -- 2.39.2