projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8d9e40
)
; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form.
author
Eli Zaretskii
<eliz@gnu.org>
Thu, 18 May 2023 14:20:36 +0000
(17:20 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Thu, 18 May 2023 14:20:36 +0000
(17:20 +0300)
lisp/emacs-lisp/benchmark.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/benchmark.el
b/lisp/emacs-lisp/benchmark.el
index dc7889c40a03a17b88be957f96e773593bebafdd..e50b8524f29083512ca85bffbaf33ac4e4edd754 100644
(file)
--- 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"))