diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-08-06 04:01:49 -0400 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-08-06 04:01:49 -0400 |
| commit | 1d8b5bc8dd543ada2f3c46436e43ea27faa3cd0e (patch) | |
| tree | db3ebd6d9f00fb60280efef3763271e26e60cd15 /lisp/subr.el | |
| parent | 6231483b7e13f1ad34b8aec560e7cc640059d6f9 (diff) | |
| download | emacs-1d8b5bc8dd543ada2f3c46436e43ea27faa3cd0e.tar.gz | |
Move cl.el to lisp/obsolete
* lisp/emacs-lisp/cl.el: Move from here...
* lisp/obsolete/cl.el: ...to here.
* lisp/subr.el (do-after-load-evaluation): Use "deprecated" in the
message when loading packages from lisp/obsolete.
Diffstat (limited to 'lisp/subr.el')
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index eea4e045dde..518575f6b4a 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -4453,7 +4453,7 @@ This function is called directly from the C code." (package (intern (substring file 0 (string-match "\\.elc?\\>" file)) obarray)) - (msg (format "Package %s is obsolete" package))) + (msg (format "Package %s is deprecated" package))) ;; Cribbed from cl--compiling-file. (when (or (not (fboundp 'byte-compile-warning-enabled-p)) (byte-compile-warning-enabled-p 'obsolete package)) |
