From: Juanma Barranquero Date: Tue, 1 Mar 2011 03:59:31 +0000 (+0100) Subject: lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~687 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7;p=emacs.git lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e841238524c..b4d62f105e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-03-01 Juanma Barranquero + + * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring. + 2011-03-01 Glenn Morris * calendar/cal-hebrew.el (calendar-hebrew-birthday, diary-hebrew-date): diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el index 8e192a18459..08001171ed1 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" "0904b956872432ae7cc5fa9abcefce63") +;;;;;; gensym) "cl-macs" "cl-macs.el" "b3031039e82679e5b013ce1cbf174ee8") ;;; Generated autoloads from cl-macs.el (autoload 'gensym "cl-macs" "\ @@ -505,7 +505,7 @@ 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, and in -successive bindings within BINDINGS, will create lexical closures +successive bindings within VARLIST, will create lexical closures as in Common Lisp. This is similar to the behavior of `let*' in Common Lisp. diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 80e95724f1f..c57d37703b0 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1470,7 +1470,7 @@ lexical closures as in Common Lisp. (defmacro lexical-let* (bindings &rest body) "Like `let*', but lexically scoped. The main visible difference is that lambdas inside BODY, and in -successive bindings within BINDINGS, will create lexical closures +successive bindings within VARLIST, will create lexical closures as in Common Lisp. This is similar to the behavior of `let*' in Common Lisp. \n(fn VARLIST BODY)"