emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog emacs-lisp/cl-macs.el


From: Chong Yidong
Subject: [Emacs-diffs] emacs/lisp ChangeLog emacs-lisp/cl-macs.el
Date: Sun, 10 May 2009 22:01:25 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/05/10 22:01:23

Modified files:
        lisp           : ChangeLog 
        lisp/emacs-lisp: cl-macs.el 

Log message:
        * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15634&r2=1.15635
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/emacs-lisp/cl-macs.el?cvsroot=emacs&r1=1.79&r2=1.80

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15634
retrieving revision 1.15635
diff -u -b -r1.15634 -r1.15635
--- ChangeLog   10 May 2009 21:22:00 -0000      1.15634
+++ ChangeLog   10 May 2009 22:01:20 -0000      1.15635
@@ -1,3 +1,7 @@
+2009-05-10  Chong Yidong  <address@hidden>
+
+       * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).
+
 2009-05-10  Kim F. Storm  <address@hidden>
 
        * ido.el: Add proper support for confirm-nonexistent-file-or-buffer

Index: emacs-lisp/cl-macs.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emacs-lisp/cl-macs.el,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -b -r1.79 -r1.80
--- emacs-lisp/cl-macs.el       5 Jan 2009 03:20:50 -0000       1.79
+++ emacs-lisp/cl-macs.el       10 May 2009 22:01:23 -0000      1.80
@@ -1448,8 +1448,10 @@
 ;;;###autoload
 (defmacro lexical-let* (bindings &rest body)
   "Like `let*', but lexically scoped.
-The main visible difference is that lambdas inside BODY will create
-lexical closures as in Common Lisp.
+The main visible difference is that lambdas inside BODY, and in
+successive bindings within BINDINGS, will create lexical closures
+as in Common Lisp.  This is similar to the behavior of `let*' in
+Common Lisp.
 \n(fn VARLIST BODY)"
   (if (null bindings) (cons 'progn body)
     (setq bindings (reverse bindings))




reply via email to

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