]> git.eshelyaron.com Git - emacs.git/commitdiff
dolist doc fix.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 2 Aug 2011 18:49:12 +0000 (20:49 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 2 Aug 2011 18:49:12 +0000 (20:49 +0200)
(dolist): Mention that there's a nil block

lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index b8e2b3bb5b4486f7f867333b6c052f29490b0647..540c49a18ada67cf6ebbe0f30e1b5fb979ebc5a8 100644 (file)
@@ -1,5 +1,8 @@
 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
+       (bug#4433).
+
        * ido.el (ido-mode): Switch off the message if called
        non-interactively.
 
index d6b4643d6a4c4c13ebe96353b4d10e793420bc2e..6d242eda3abec818a71a8653a460186c263a656f 100644 (file)
@@ -1233,6 +1233,7 @@ Valid clauses are:
   "Loop over a list.
 Evaluate BODY with VAR bound to each `car' from LIST, in turn.
 Then evaluate RESULT to get return value, default nil.
+An implicit nil block is established around the loop.
 
 \(fn (VAR LIST [RESULT]) BODY...)"
   (let ((temp (make-symbol "--cl-dolist-temp--")))