summaryrefslogtreecommitdiff
path: root/lisp/progmodes/compile.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r--lisp/progmodes/compile.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 456f92f9be2..537d3cd0e0f 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1549,13 +1549,13 @@ Turning the mode on runs the normal hook `compilation-minor-mode-hook'."
(append '(compilation-handle-exit t) nil))
(setq mode-line-process
(let ((out-string (format ":%s [%s]" process-status (cdr status)))
- (tooltip (buffer-substring-no-properties (1+ omax) (point))))
- (propertize
- out-string
- 'help-echo tooltip
- 'face
- (if (> exit-status 0) 'font-lock-warning-face 'compilation-info))))
- (message (format "exit status: %s %s" exit-status (> 0 exit-status)))
+ (msg (format "%s %s" mode-name
+ (replace-regexp-in-string "\n?$" "" (car status)))))
+ (message "%s" msg)
+ (propertize out-string
+ 'help-echo msg 'face (if (> exit-status 0)
+ 'compilation-error
+ 'compilation-info))))
;; Force mode line redisplay soon.
(force-mode-line-update)
(if (and opoint (< opoint omax))