]> git.eshelyaron.com Git - emacs.git/commitdiff
Further doc fixes for dotimes about RESULT
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 30 Sep 2020 18:29:16 +0000 (20:29 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 30 Sep 2020 18:31:44 +0000 (20:31 +0200)
* lisp/subr.el (dotimes): Be even more explicit about RESULT
(bug#16206).

lisp/subr.el

index 6f164ae694efbad6659590d80cb1d1f9c79d1df1..2dc23a479ec5d3c6a2bde1424c714f3d001642d3 100644 (file)
@@ -279,8 +279,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))