summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/comp.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-03-24 19:10:20 +0000
committerAndrea Corallo <akrl@sdf.org>2020-03-24 19:10:20 +0000
commit4acc4ac66753ff1556be907f2611b48ffc3fc79c (patch)
treea7a0686ba4ab7c82a78563beb459d93538d89472 /lisp/emacs-lisp/comp.el
parentf7e10297d18b17f55b4a8442a3307db00605d46d (diff)
downloademacs-4acc4ac66753ff1556be907f2611b48ffc3fc79c.tar.gz
emacs-4acc4ac66753ff1556be907f2611b48ffc3fc79c.tar.bz2
emacs-4acc4ac66753ff1556be907f2611b48ffc3fc79c.zip
* comp.el (native-compile-async): Fix excessive messaging
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r--lisp/emacs-lisp/comp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index dfa9658a36c..c5c894f6607 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -2283,8 +2283,8 @@ LOAD can be nil t or 'late."
file)
(setf comp-files-queue (append comp-files-queue `((,file . ,load))))))
(when (zerop (comp-async-runnings))
- (comp-run-async-workers))
- (message "Compilation started.")))
+ (comp-run-async-workers)
+ (message "Compilation started."))))
(provide 'comp)