diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-08-02 20:49:12 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-08-02 20:49:12 +0200 |
commit | ce887515f236ba6ea928a4dd68afb958abcfbde6 (patch) | |
tree | fefb6a44b6467e8e7b396f18b03cf47417dfa4ea /lisp/emacs-lisp | |
parent | fb33fa43b4e085d01a41f1533ea699531a67ef49 (diff) | |
download | emacs-ce887515f236ba6ea928a4dd68afb958abcfbde6.tar.gz emacs-ce887515f236ba6ea928a4dd68afb958abcfbde6.tar.bz2 emacs-ce887515f236ba6ea928a4dd68afb958abcfbde6.zip |
dolist doc fix.
(dolist): Mention that there's a nil block
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index d6b4643d6a4..6d242eda3ab 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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--"))) |