emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100519: Backport revno:103463 fro


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100519: Backport revno:103463 from trunk.
Date: Fri, 11 Mar 2011 16:34:07 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100519
committer: Juanma Barranquero <address@hidden>
branch nick: emacs-23
timestamp: Fri 2011-03-11 16:34:07 +0100
message:
  Backport revno:103463 from trunk.
  
  *lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/cl-loaddefs.el
  lisp/emacs-lisp/cl-macs.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-03-11 14:05:31 +0000
+++ b/lisp/ChangeLog    2011-03-11 15:34:07 +0000
@@ -1,5 +1,8 @@
 2011-03-11  Juanma Barranquero  <address@hidden>
 
+       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 <address@hidden>.

=== modified file 'lisp/emacs-lisp/cl-loaddefs.el'
--- a/lisp/emacs-lisp/cl-loaddefs.el    2011-02-10 18:26:43 +0000
+++ b/lisp/emacs-lisp/cl-loaddefs.el    2011-03-11 15:34:07 +0000
@@ -282,7 +282,7 @@
 ;;;;;;  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 @@
 (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.
 

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2011-02-05 22:03:44 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2011-03-11 15:34:07 +0000
@@ -1455,7 +1455,7 @@
 (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)"


reply via email to

[Prev in Thread] Current Thread [Next in Thread]