diff options
| author | Juanma Barranquero | 2011-03-01 04:59:31 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2011-03-01 04:59:31 +0100 |
| commit | f6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7 (patch) | |
| tree | f8989a9ce308146cf97ad78c385b692f890d18f7 | |
| parent | 5e7a95b0f5dc379ce5cde3a0466f1c3cc6f19299 (diff) | |
| download | emacs-f6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7.tar.gz emacs-f6132e5a3cc01b3deb9894cbf2b3462c6c70b1c7.zip | |
lisp/emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-loaddefs.el | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
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 @@ | |||
| 1 | 2011-03-01 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/cl-macs.el (lexical-let*): Fix argument name in docstring. | ||
| 4 | |||
| 1 | 2011-03-01 Glenn Morris <rgm@gnu.org> | 5 | 2011-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" "\ |
| 506 | Like `let*', but lexically scoped. | 506 | Like `let*', but lexically scoped. |
| 507 | The main visible difference is that lambdas inside BODY, and in | 507 | The main visible difference is that lambdas inside BODY, and in |
| 508 | successive bindings within BINDINGS, will create lexical closures | 508 | successive bindings within VARLIST, will create lexical closures |
| 509 | as in Common Lisp. This is similar to the behavior of `let*' in | 509 | as in Common Lisp. This is similar to the behavior of `let*' in |
| 510 | Common Lisp. | 510 | Common 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. |
| 1472 | The main visible difference is that lambdas inside BODY, and in | 1472 | The main visible difference is that lambdas inside BODY, and in |
| 1473 | successive bindings within BINDINGS, will create lexical closures | 1473 | successive bindings within VARLIST, will create lexical closures |
| 1474 | as in Common Lisp. This is similar to the behavior of `let*' in | 1474 | as in Common Lisp. This is similar to the behavior of `let*' in |
| 1475 | Common Lisp. | 1475 | Common Lisp. |
| 1476 | \n(fn VARLIST BODY)" | 1476 | \n(fn VARLIST BODY)" |