+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
;;;###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))