# HG changeset patch # User Markus Rost # Date 1057683416 0 # Node ID 5e9d88e4fcff4bdb646904113309b3915e849dbe # Parent 196b83881b7b13688fb31c2fc82da8569a30b8ef (dolist, dotimes): Doc fix. diff -r 196b83881b7b -r 5e9d88e4fcff lisp/subr.el --- 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)