mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-30 17:10:51 -08:00
Further doc fixes for dotimes about RESULT
* lisp/subr.el (dotimes): Be even more explicit about RESULT
(bug#16206).
(cherry picked from commit 5b0d8d0f28)
This commit is contained in:
parent
e66502fec1
commit
9d02e6c5ff
1 changed files with 5 additions and 2 deletions
|
|
@ -280,8 +280,11 @@ Then evaluate RESULT to get return value, default nil.
|
|||
(defmacro dotimes (spec &rest body)
|
||||
"Loop a certain number of times.
|
||||
Evaluate BODY with VAR bound to successive integers running from 0,
|
||||
inclusive, to COUNT, exclusive. Then evaluate RESULT to get
|
||||
the return value (nil if RESULT is omitted). Its use is deprecated.
|
||||
inclusive, to COUNT, exclusive.
|
||||
|
||||
Finally RESULT is evaluated to get the return value (nil if
|
||||
RESULT is omitted). Using RESULT is deprecated, and may result
|
||||
in compilation warnings about unused variables.
|
||||
|
||||
\(fn (VAR COUNT [RESULT]) BODY...)"
|
||||
(declare (indent 1) (debug dolist))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue