]> git.eshelyaron.com Git - emacs.git/commitdiff
Backport 2011-03-01T03:59:31Z!lekktu@gmail.com from trunk.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 11 Mar 2011 15:34:07 +0000 (16:34 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 11 Mar 2011 15:34:07 +0000 (16:34 +0100)
*lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.

lisp/ChangeLog
lisp/emacs-lisp/cl-loaddefs.el
lisp/emacs-lisp/cl-macs.el

index d84f98a1322b39525fb8fbd75190a32d81e4160f..e368e660fe211601b1fd6d27e585840f6515f76f 100644 (file)
@@ -1,5 +1,8 @@
 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
 
+       Backport revno:103463 from trunk.
+       * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
+
        Backport revno:103622 from trunk.
        * help-fns.el (describe-variable): Don't complete keywords.
        Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
index 835d26ed58597187fdf006d36c7922b7b382442f..2fb7c0434b52eb2150479e14c48b8fd4cc3f7006 100644 (file)
@@ -282,7 +282,7 @@ Not documented
 ;;;;;;  flet progv psetq 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" "75e86ac663887b54bf1778f2dd028463")
+;;;;;;  defmacro* defun* gentemp gensym) "cl-macs" "cl-macs.el" "12451ac01f94f10d30cf7a8f92625c42")
 ;;; 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.
 
index 4061e570cef07a0d8006b52025b07c167b7bb86a..3e9d7c27258510babed3a58b4ca67f085243a707 100644 (file)
@@ -1455,7 +1455,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)"