aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorMarkus Rost <[email protected]>2003-07-08 16:57:15 +0000
committerMarkus Rost <[email protected]>2003-07-08 16:57:15 +0000
commitd775d486e940230aaed8c313a2a16c205b6ac54c (patch)
treece29c4c44eb24b871c149336489798c9c505687a /lisp/subr.el
parentd73a7bb8af1a9b6d4f7c25c922496807a4f4f224 (diff)
(dolist, dotimes): Doc fix.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 31903a895a..0251180f8f 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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)