diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-05-10 22:01:20 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-05-10 22:01:20 +0000 |
commit | 143770f236fe75247343d0d5c063dc09d1cf10df (patch) | |
tree | 24799d5e81b712e938345243c26a75cd8d8c1978 /lisp/emacs-lisp | |
parent | 27a69fd9b39feb90bb20c18867b0e57ecf785c8c (diff) | |
download | emacs-143770f236fe75247343d0d5c063dc09d1cf10df.tar.gz emacs-143770f236fe75247343d0d5c063dc09d1cf10df.tar.bz2 emacs-143770f236fe75247343d0d5c063dc09d1cf10df.zip |
* emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index edcb5c90564..2d6eb93550b 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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)) |