summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2018-06-17 13:13:52 +0300
committerEli Zaretskii <eliz@gnu.org>2018-06-17 13:13:52 +0300
commit849631c1b7e9c5c4a90655208265de9db0854bb2 (patch)
tree1358565cf5f8eb83eb35d5e5f45c50f7d90e3bec /lisp/subr.el
parentedb1f85a27817a3fac38bb85752671414819203b (diff)
downloademacs-849631c1b7e9c5c4a90655208265de9db0854bb2.tar.gz
emacs-849631c1b7e9c5c4a90655208265de9db0854bb2.tar.bz2
emacs-849631c1b7e9c5c4a90655208265de9db0854bb2.zip
Fix last change
* etc/NEWS: Fix last added entry. * lisp/subr.el (dotimes-with-progress-reporter) (dolist-with-progress-reporter): Fix the advertised signature. * doc/lispref/display.texi (Progress): Fix last change. (Bug#31696) (Bug#31697)
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index dc946bd90b0..7ac1c912818 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -5050,11 +5050,11 @@ case, use this string to create a progress reporter.
At each iteration, print the reporter message followed by progress
percentage in the echo area. After the loop is finished,
-print the reporter message followed by word \"done\".
+print the reporter message followed by the word \"done\".
This macro is a convenience wrapper around `make-progress-reporter' and friends.
-\(fn (VAR COUNT [RESULT]) MESSAGE BODY...)"
+\(fn (VAR COUNT [RESULT]) REPORTER-OR-MESSAGE BODY...)"
(declare (indent 2) (debug ((symbolp form &optional form) form body)))
(let ((prep (make-symbol "--dotimes-prep--"))
(end (make-symbol "--dotimes-end--")))
@@ -5078,9 +5078,9 @@ case, use this string to create a progress reporter.
At each iteration, print the reporter message followed by progress
percentage in the echo area. After the loop is finished,
-print the reporter message followed by word \"done\".
+print the reporter message followed by the word \"done\".
-\(fn (VAR LIST [RESULT]) MESSAGE BODY...)"
+\(fn (VAR LIST [RESULT]) REPORTER-OR-MESSAGE BODY...)"
(declare (indent 2) (debug ((symbolp form &optional form) form body)))
(let ((prep (make-symbol "--dolist-progress-reporter--"))
(count (make-symbol "--dolist-count--"))