]> code.delx.au - gnu-emacs/commitdiff
* emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).
authorChong Yidong <cyd@stupidchicken.com>
Sun, 10 May 2009 22:01:20 +0000 (22:01 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 10 May 2009 22:01:20 +0000 (22:01 +0000)
lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index ae87752498359e34dccadc7023d315d11e1b928f..073d45db52654984cf6cbc01130ad461ae0d9d98 100644 (file)
@@ -1,3 +1,7 @@
+2009-05-10  Chong Yidong  <cyd@stupidchicken.com>
+
+       * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).
+
 2009-05-10  Kim F. Storm  <storm@cua.dk>
 
        * ido.el: Add proper support for confirm-nonexistent-file-or-buffer
index edcb5c905644ba2440ffb1a2546eb2050387b9fc..2d6eb93550b3bc6cf1e971bdfa661d5738faa451 100644 (file)
@@ -1448,8 +1448,10 @@ lexical closures as in Common Lisp.
 ;;;###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))