>From 25bc31d85ffd7e27e00ba73bac47856def9e97ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Le=20Gouguec?= Date: Wed, 24 Jul 2019 22:50:59 +0200 Subject: [PATCH] Update every mode-line when compilation ends Otherwise the "[Compiling]" indicator lingers in some of them. * lisp/progmodes/compile.el (compilation-handle-exit): Refresh every mode-line. --- lisp/progmodes/compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index f4750c0059..657650b488 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -2214,7 +2214,7 @@ compilation-handle-exit 'compilation-mode-line-exit))) compilation-mode-line-errors)) ;; Force mode line redisplay soon. - (force-mode-line-update) + (force-mode-line-update t) (if (and opoint (< opoint omax)) (goto-char opoint)) (run-hook-with-args 'compilation-finish-functions cur-buffer msg))) -- 2.22.0