mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-18 18:05:07 +00:00
* emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).
This commit is contained in:
parent
27a69fd9b3
commit
143770f236
@ -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
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user