diff options
| author | Glenn Morris | 2012-09-28 19:51:20 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-09-28 19:51:20 -0400 |
| commit | 277f0cfa8b7dde109913f52c40eb8447b71eaffc (patch) | |
| tree | 172c7541f9afed9c5c815a4afd89592047e2594c | |
| parent | e60b51abaa74fa15cc97de18f90b1ee967ae62ab (diff) | |
| download | emacs-277f0cfa8b7dde109913f52c40eb8447b71eaffc.tar.gz emacs-277f0cfa8b7dde109913f52c40eb8447b71eaffc.zip | |
* lisp/emacs-lisp/cl.el (flet): Fix case of obsolescence message.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ed9069acf2..455cf684757 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-09-28 Glenn Morris <rgm@gnu.org> | 1 | 2012-09-28 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/cl.el (flet): Fix case of obsolescence message. | ||
| 4 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-cl-file-p): | 5 | * emacs-lisp/bytecomp.el (byte-compile-cl-file-p): |
| 4 | Only "cl.el" counts as cl these days. | 6 | Only "cl.el" counts as cl these days. |
| 5 | 7 | ||
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index ae0852d6c87..34beed0d9ef 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el | |||
| @@ -452,7 +452,7 @@ definitions, or lack thereof). | |||
| 452 | 452 | ||
| 453 | \(fn ((FUNC ARGLIST BODY...) ...) FORM...)" | 453 | \(fn ((FUNC ARGLIST BODY...) ...) FORM...)" |
| 454 | (declare (indent 1) (debug cl-flet) | 454 | (declare (indent 1) (debug cl-flet) |
| 455 | (obsolete "Use either `cl-flet' or `cl-letf'." "24.3")) | 455 | (obsolete "use either `cl-flet' or `cl-letf'." "24.3")) |
| 456 | `(letf ,(mapcar | 456 | `(letf ,(mapcar |
| 457 | (lambda (x) | 457 | (lambda (x) |
| 458 | (if (or (and (fboundp (car x)) | 458 | (if (or (and (fboundp (car x)) |