aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/cl-macs.el
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <[email protected]>2011-08-02 20:49:12 +0200
committerLars Magne Ingebrigtsen <[email protected]>2011-08-02 20:49:12 +0200
commitce887515f236ba6ea928a4dd68afb958abcfbde6 (patch)
treefefb6a44b6467e8e7b396f18b03cf47417dfa4ea /lisp/emacs-lisp/cl-macs.el
parentfb33fa43b4e085d01a41f1533ea699531a67ef49 (diff)
dolist doc fix.
(dolist): Mention that there's a nil block
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r--lisp/emacs-lisp/cl-macs.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index d6b4643d6a..6d242eda3a 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--")))