emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103463: lisp/emacs-lisp/cl-macs.el (


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103463: lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
Date: Tue, 01 Mar 2011 04:59:31 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103463
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Tue 2011-03-01 04:59:31 +0100
message:
  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-01 03:38:41 +0000
+++ b/lisp/ChangeLog    2011-03-01 03:59:31 +0000
@@ -1,3 +1,7 @@
+2011-03-01  Juanma Barranquero  <address@hidden>
+
+       * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
+
 2011-03-01  Glenn Morris  <address@hidden>
 
        * calendar/cal-hebrew.el (calendar-hebrew-birthday, diary-hebrew-date):

=== modified file 'lisp/emacs-lisp/cl-loaddefs.el'
--- a/lisp/emacs-lisp/cl-loaddefs.el    2011-02-13 00:16:28 +0000
+++ b/lisp/emacs-lisp/cl-loaddefs.el    2011-03-01 03:59:31 +0000
@@ -282,7 +282,7 @@
 ;;;;;;  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 @@
 (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:30:14 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2011-03-01 03:59:31 +0000
@@ -1470,7 +1470,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]