diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-05-18 17:20:36 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-05-18 17:20:36 +0300 |
commit | 3bc5efb87e5ac9b7068e71307466b2d0220e92fb (patch) | |
tree | 9ecc978faac988b3335138ebc582f8816706e79c /lisp/emacs-lisp | |
parent | f8d9e40d2c1d127a125adc097d985a0b6964a86c (diff) | |
download | emacs-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.el | 2 |
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")) |