changeset 51817:5e9d88e4fcff

(dolist, dotimes): Doc fix.
author Markus Rost <rost@math.uni-bielefeld.de>
date Tue, 08 Jul 2003 16:56:56 +0000
parents 196b83881b7b
children c23aefddb54a
files lisp/subr.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Tue Jul 08 09:24:46 2003 +0000
+++ b/lisp/subr.el	Tue Jul 08 16:56:56 2003 +0000
@@ -114,7 +114,7 @@
 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 @@
 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)