From: Andrea Corallo Date: Tue, 24 Mar 2020 19:10:20 +0000 (+0000) Subject: * comp.el (native-compile-async): Fix excessive messaging X-Git-Tag: emacs-28.0.90~2727^2~745 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4acc4ac66753ff1556be907f2611b48ffc3fc79c;p=emacs.git * comp.el (native-compile-async): Fix excessive messaging --- 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)