[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-29 3bc5efb87e5: ; * lisp/emacs-lisp/benchmark.el (benchmark-progn)
From: |
Eli Zaretskii |
Subject: |
emacs-29 3bc5efb87e5: ; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form. |
Date: |
Thu, 18 May 2023 10:20:44 -0400 (EDT) |
branch: emacs-29
commit 3bc5efb87e5ac9b7068e71307466b2d0220e92fb
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>
; * 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"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- emacs-29 3bc5efb87e5: ; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix declare form.,
Eli Zaretskii <=