aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2011-03-01 04:59:31 +0100
committerJuanma Barranquero2011-03-01 04:59:31 +0100
commitf6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7 (patch)
treef8989a9ce308146cf97ad78c385b692f890d18f7
parent5e7a95b0f5dc379ce5cde3a0466f1c3cc6f19299 (diff)
downloademacs-f6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7.tar.gz
emacs-f6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7.zip
lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/cl-loaddefs.el4
-rw-r--r--lisp/emacs-lisp/cl-macs.el2
3 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e841238524c..b4d62f105e9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-03-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
4
12011-03-01 Glenn Morris <rgm@gnu.org> 52011-03-01 Glenn Morris <rgm@gnu.org>
2 6
3 * calendar/cal-hebrew.el (calendar-hebrew-birthday, diary-hebrew-date): 7 * 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
282;;;;;; do-all-symbols do-symbols dotimes dolist do* do loop return-from 282;;;;;; do-all-symbols do-symbols dotimes dolist do* do loop return-from
283;;;;;; return block etypecase typecase ecase case load-time-value 283;;;;;; return block etypecase typecase ecase case load-time-value
284;;;;;; eval-when destructuring-bind function* defmacro* defun* gentemp 284;;;;;; eval-when destructuring-bind function* defmacro* defun* gentemp
285;;;;;; gensym) "cl-macs" "cl-macs.el" "0904b956872432ae7cc5fa9abcefce63") 285;;;;;; gensym) "cl-macs" "cl-macs.el" "b3031039e82679e5b013ce1cbf174ee8")
286;;; Generated autoloads from cl-macs.el 286;;; Generated autoloads from cl-macs.el
287 287
288(autoload 'gensym "cl-macs" "\ 288(autoload 'gensym "cl-macs" "\
@@ -505,7 +505,7 @@ lexical closures as in Common Lisp.
505(autoload 'lexical-let* "cl-macs" "\ 505(autoload 'lexical-let* "cl-macs" "\
506Like `let*', but lexically scoped. 506Like `let*', but lexically scoped.
507The main visible difference is that lambdas inside BODY, and in 507The main visible difference is that lambdas inside BODY, and in
508successive bindings within BINDINGS, will create lexical closures 508successive bindings within VARLIST, will create lexical closures
509as in Common Lisp. This is similar to the behavior of `let*' in 509as in Common Lisp. This is similar to the behavior of `let*' in
510Common Lisp. 510Common Lisp.
511 511
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.
1470(defmacro lexical-let* (bindings &rest body) 1470(defmacro lexical-let* (bindings &rest body)
1471 "Like `let*', but lexically scoped. 1471 "Like `let*', but lexically scoped.
1472The main visible difference is that lambdas inside BODY, and in 1472The main visible difference is that lambdas inside BODY, and in
1473successive bindings within BINDINGS, will create lexical closures 1473successive bindings within VARLIST, will create lexical closures
1474as in Common Lisp. This is similar to the behavior of `let*' in 1474as in Common Lisp. This is similar to the behavior of `let*' in
1475Common Lisp. 1475Common Lisp.
1476\n(fn VARLIST BODY)" 1476\n(fn VARLIST BODY)"