diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-04-29 21:21:42 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-04-29 21:25:02 +0100 |
commit | 02e3ffad6d9f757599bb441704b6cf6494183174 (patch) | |
tree | 960a18ac49140c3572ce892daca47f4264e05509 /lisp/emacs-lisp | |
parent | ab66e61b58cd872379e7a9ce301bf0bd17507282 (diff) | |
download | emacs-02e3ffad6d9f757599bb441704b6cf6494183174.tar.gz emacs-02e3ffad6d9f757599bb441704b6cf6494183174.tar.bz2 emacs-02e3ffad6d9f757599bb441704b6cf6494183174.zip |
* Fix async compilation non respecting `comp-always-compile' nil value.
* lisp/emacs-lisp/comp.el (comp-run-async-workers): Fix missing
`comp-output-filename' usage.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 1dbafbe1ae1..05417fdc31c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -2196,7 +2196,8 @@ display a message." "`comp-files-queue' should be \".el\" files: %s" source-file) when (or comp-always-compile - (file-newer-than-file-p source-file (concat source-file "n"))) + (file-newer-than-file-p source-file + (comp-output-filename source-file))) do (let* ((expr `(progn (require 'comp) (setf comp-speed ,comp-speed |