* lisp/emacs-lisp/cl.el (flet): Fix case of obsolescence message.

This commit is contained in:
Glenn Morris 2012-09-28 19:51:20 -04:00
parent e60b51abaa
commit 277f0cfa8b
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2012-09-28 Glenn Morris <rgm@gnu.org>
* emacs-lisp/cl.el (flet): Fix case of obsolescence message.
* emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
Only "cl.el" counts as cl these days.

View file

@ -452,7 +452,7 @@ definitions, or lack thereof).
\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
(declare (indent 1) (debug cl-flet)
(obsolete "Use either `cl-flet' or `cl-letf'." "24.3"))
(obsolete "use either `cl-flet' or `cl-letf'." "24.3"))
`(letf ,(mapcar
(lambda (x)
(if (or (and (fboundp (car x))