diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2003-07-08 16:57:15 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2003-07-08 16:57:15 +0000 |
commit | d775d486e940230aaed8c313a2a16c205b6ac54c (patch) | |
tree | ce29c4c44eb24b871c149336489798c9c505687a /lisp/subr.el | |
parent | d73a7bb8af1a9b6d4f7c25c922496807a4f4f224 (diff) | |
download | emacs-d775d486e940230aaed8c313a2a16c205b6ac54c.tar.gz |
(dolist, dotimes): Doc fix.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 31903a895a5..0251180f8f9 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) |