emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105385: dolist doc fix.


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105385: dolist doc fix.
Date: Tue, 02 Aug 2011 20:49:12 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105385
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Tue 2011-08-02 20:49:12 +0200
message:
  dolist doc fix.
  
  (dolist): Mention that there's a nil block
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/cl-macs.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-08-02 15:59:31 +0000
+++ b/lisp/ChangeLog    2011-08-02 18:49:12 +0000
@@ -1,5 +1,8 @@
 2011-08-02  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * 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.
 

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2011-07-16 15:52:46 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2011-08-02 18:49:12 +0000
@@ -1233,6 +1233,7 @@
   "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--")))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]