mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-07 15:00:34 -08:00
* emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).
This commit is contained in:
parent
27a69fd9b3
commit
143770f236
2 changed files with 8 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue