1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

dolist doc fix.

(dolist): Mention that there's a nil block
This commit is contained in:
Lars Magne Ingebrigtsen 2011-08-02 20:49:12 +02:00
parent fb33fa43b4
commit ce887515f2
2 changed files with 4 additions and 0 deletions

View 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.

View 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--")))