diff options
| author | Nick Roberts | 2008-02-29 22:09:56 +0000 |
|---|---|---|
| committer | Nick Roberts | 2008-02-29 22:09:56 +0000 |
| commit | 14b7b2c492544dff9ba8c4e7d081120c21674a0c (patch) | |
| tree | ec456bb8397326096bede08290af5eb8503ff2b1 /lisp | |
| parent | 6867f3ddf625a36eb640df83780554561d1fb619 (diff) | |
| download | emacs-14b7b2c492544dff9ba8c4e7d081120c21674a0c.tar.gz emacs-14b7b2c492544dff9ba8c4e7d081120c21674a0c.zip | |
(vc-set-mode-line-busy-indicator): Use shorter message
and quieter face (not a warning).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/vc.el | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index ceed375639d..ab9277a35f1 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -1063,14 +1063,8 @@ BUF defaults to \"*vc*\", can be a string and will be created if necessary." | |||
| 1063 | 1063 | ||
| 1064 | (defun vc-set-mode-line-busy-indicator () | 1064 | (defun vc-set-mode-line-busy-indicator () |
| 1065 | (setq mode-line-process | 1065 | (setq mode-line-process |
| 1066 | ;; Deliberate overstatement, but power law respected. | 1066 | (propertize " [waiting...]" |
| 1067 | ;; (The message is ephemeral, so we make it loud.) --ttn | 1067 | 'face 'font-lock-variable-name-face |
| 1068 | (propertize " (incomplete/in progress)" | ||
| 1069 | 'face (if (featurep 'compile) | ||
| 1070 | ;; ttn's preferred loudness | ||
| 1071 | 'compilation-warning | ||
| 1072 | ;; suitably available fallback | ||
| 1073 | font-lock-warning-face) | ||
| 1074 | 'help-echo | 1068 | 'help-echo |
| 1075 | "A VC command is in progress in this buffer"))) | 1069 | "A VC command is in progress in this buffer"))) |
| 1076 | 1070 | ||