mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 05:17:35 +00:00
(compilation-sentinel): Include exit status in modeline.
This commit is contained in:
parent
c1b97b443c
commit
5cb9f2dba5
1 changed files with 2 additions and 1 deletions
|
|
@ -539,7 +539,8 @@ See `compilation-mode'."
|
|||
(forward-char 1)
|
||||
(setq mode-line-process
|
||||
(concat ":"
|
||||
(symbol-name (process-status proc))))
|
||||
(symbol-name (process-status proc))
|
||||
" [" (process-exit-status proc) "]"))
|
||||
;; Since the buffer and mode line will show that the
|
||||
;; process is dead, we can delete it now. Otherwise it
|
||||
;; will stay around until M-x list-processes.
|
||||
|
|
|
|||
Loading…
Reference in a new issue