diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-05-12 12:28:40 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-05-12 12:28:40 +0000 |
commit | ae232225a957baabf765e72922391410a1e4bfb3 (patch) | |
tree | a31d7b9e1038172b36ec6f36e399fd3190824fc8 /lisp/emacs-lisp | |
parent | 890800b148c85d935935b8cc6cf124d2888e95fa (diff) | |
download | emacs-ae232225a957baabf765e72922391410a1e4bfb3.tar.gz emacs-ae232225a957baabf765e72922391410a1e4bfb3.tar.bz2 emacs-ae232225a957baabf765e72922391410a1e4bfb3.zip |
Update.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-loaddefs.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el index 165ba84531c..8812ce1c11b 100644 --- a/lisp/emacs-lisp/cl-loaddefs.el +++ b/lisp/emacs-lisp/cl-loaddefs.el @@ -282,7 +282,7 @@ Not documented ;;;;;; do-all-symbols do-symbols dotimes dolist do* do loop return-from ;;;;;; return block etypecase typecase ecase case load-time-value ;;;;;; eval-when destructuring-bind function* defmacro* defun* gentemp -;;;;;; gensym) "cl-macs" "cl-macs.el" "5eed0057bf35ca41a5e133d1ec6204d0") +;;;;;; gensym) "cl-macs" "cl-macs.el" "9e787a584117a8d43201f1aa619fcfb7") ;;; Generated autoloads from cl-macs.el (autoload 'gensym "cl-macs" "\ @@ -504,8 +504,10 @@ lexical closures as in Common Lisp. (autoload 'lexical-let* "cl-macs" "\ 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. \(fn VARLIST BODY)" nil (quote macro)) |