]> git.eshelyaron.com Git - emacs.git/commitdiff
(dolist, dotimes): Doc fix.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Tue, 8 Jul 2003 16:57:15 +0000 (16:57 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Tue, 8 Jul 2003 16:57:15 +0000 (16:57 +0000)
lisp/ChangeLog
lisp/subr.el

index 05bffad4c08f9972e4856c43329411eb8dbff4ab..bb19968983be847fec47b9d7e8eebdac4b2afbce 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-08  Markus Rost  <rost@math.ohio-state.edu>
+
+       * subr.el (dolist, dotimes):  Doc fix.
+
 2003-07-08  Kim F. Storm  <storm@cua.dk>
 
        * international/mule-cmds.el (set-display-table-and-terminal-coding-system):
index 31903a895a5e0535d9b7a6083e6ab68ed904e96e..0251180f8f9395b19d8c401541f30a3bdc93e64d 100644 (file)
@@ -114,7 +114,7 @@ change the list."
 Evaluate BODY with VAR bound to each car from LIST, in turn.
 Then evaluate RESULT to get return value, default nil.
 
-\(dolist (VAR LIST [RESULT]) BODY...)"
+\(fn (VAR LIST [RESULT]) BODY...)"
   (declare (indent 1) (debug ((symbolp form &optional form) body)))
   (let ((temp (make-symbol "--dolist-temp--")))
     `(let ((,temp ,(nth 1 spec))
@@ -132,7 +132,7 @@ 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).
 
-\(dotimes (VAR COUNT [RESULT]) BODY...)"
+\(fn (VAR COUNT [RESULT]) BODY...)"
   (declare (indent 1) (debug dolist))
   (let ((temp (make-symbol "--dotimes-temp--"))
        (start 0)