From f6b58e8016c7ce7b332a3b2a8a56bd2f9987d95a Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 17 Nov 2019 14:03:10 +0100 Subject: [PATCH] message when finished compiling --- lisp/emacs-lisp/comp.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index e279713523a..859e0dedd9c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -1797,7 +1797,8 @@ Prepare every function for final compilation and drive the C back-end." "--eval" (prin1-to-string code)))) (while (accept-process-output prc) - (thread-yield))))))) + (thread-yield))))) + (message "Finished compiling."))) "compilation thread")) ;;; Compiler entry points. -- 2.39.5