diff options
| author | Glenn Morris | 2017-11-29 15:27:06 -0500 |
|---|---|---|
| committer | Glenn Morris | 2017-11-29 15:27:06 -0500 |
| commit | 408862f02a874dcd9cfc2599adb35dec522b3ef4 (patch) | |
| tree | 9b636d134d8fb2fb6ca15290396abbf291e71383 | |
| parent | 9964db4c34bc01b319f70983400b9820be046cf2 (diff) | |
| download | emacs-408862f02a874dcd9cfc2599adb35dec522b3ef4.tar.gz emacs-408862f02a874dcd9cfc2599adb35dec522b3ef4.zip | |
; * lisp/emacs-lisp/bytecomp.el: Tweak message formatting in previous.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 9cbbfdcd7a9..e5a1ea782e8 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -175,7 +175,9 @@ are found in the same directory is hard-coded in various places in Emacs.)" | |||
| 175 | ;; Sadly automake relies on this misfeature up to at least version 1.15.1. | 175 | ;; Sadly automake relies on this misfeature up to at least version 1.15.1. |
| 176 | (if (fboundp 'byte-compile-dest-file) | 176 | (if (fboundp 'byte-compile-dest-file) |
| 177 | (or (featurep 'bytecomp) | 177 | (or (featurep 'bytecomp) |
| 178 | (display-warning 'bytecomp "Redefining `byte-compile-dest-file' is obsolete (as of 23.2); set `byte-compile-dest-file-function' instead.")) | 178 | (display-warning 'bytecomp (format-message "\ |
| 179 | Changing `byte-compile-dest-file' is obsolete (as of 23.2); | ||
| 180 | set `byte-compile-dest-file-function' instead."))) | ||
| 179 | (defun byte-compile-dest-file (filename) | 181 | (defun byte-compile-dest-file (filename) |
| 180 | "Convert an Emacs Lisp source file name to a compiled file name. | 182 | "Convert an Emacs Lisp source file name to a compiled file name. |
| 181 | If `byte-compile-dest-file-function' is non-nil, uses that | 183 | If `byte-compile-dest-file-function' is non-nil, uses that |