# HG changeset patch # User Chong Yidong # Date 1241992880 0 # Node ID 22f651c59c50a7724e472e07985fe2131f3debd7 # Parent aed44175c8f20d90b193dea06e3378f2e7eb8d00 * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178). diff -r aed44175c8f2 -r 22f651c59c50 lisp/ChangeLog --- a/lisp/ChangeLog Sun May 10 21:48:11 2009 +0000 +++ b/lisp/ChangeLog Sun May 10 22:01:20 2009 +0000 @@ -1,3 +1,7 @@ +2009-05-10 Chong Yidong + + * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178). + 2009-05-10 Kim F. Storm * ido.el: Add proper support for confirm-nonexistent-file-or-buffer diff -r aed44175c8f2 -r 22f651c59c50 lisp/emacs-lisp/cl-macs.el --- a/lisp/emacs-lisp/cl-macs.el Sun May 10 21:48:11 2009 +0000 +++ b/lisp/emacs-lisp/cl-macs.el Sun May 10 22:01:20 2009 +0000 @@ -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))