summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-05-18 17:20:36 +0300
committerEli Zaretskii <eliz@gnu.org>2023-05-18 17:20:36 +0300
commit3bc5efb87e5ac9b7068e71307466b2d0220e92fb (patch)
tree9ecc978faac988b3335138ebc582f8816706e79c /lisp/emacs-lisp
parentf8d9e40d2c1d127a125adc097d985a0b6964a86c (diff)
downloademacs-3bc5efb87e5ac9b7068e71307466b2d0220e92fb.tar.gz
emacs-3bc5efb87e5ac9b7068e71307466b2d0220e92fb.tar.bz2
emacs-3bc5efb87e5ac9b7068e71307466b2d0220e92fb.zip
; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/benchmark.el2
1 files changed, 1 insertions, 1 deletions
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"))