]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-set-mode-line-busy-indicator): Use shorter message
authorNick Roberts <nickrob@snap.net.nz>
Fri, 29 Feb 2008 22:09:56 +0000 (22:09 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Fri, 29 Feb 2008 22:09:56 +0000 (22:09 +0000)
and quieter face (not a warning).

lisp/vc.el

index ceed375639d6955f34a7a0986d58ba869c8eff91..ab9277a35f1ece9291f6b023661dbb0fad1339a2 100644 (file)
@@ -1063,14 +1063,8 @@ BUF defaults to \"*vc*\", can be a string and will be created if necessary."
 
 (defun vc-set-mode-line-busy-indicator ()
   (setq mode-line-process
-       ;; Deliberate overstatement, but power law respected.
-       ;; (The message is ephemeral, so we make it loud.)  --ttn
-       (propertize " (incomplete/in progress)"
-                   'face (if (featurep 'compile)
-                             ;; ttn's preferred loudness
-                             'compilation-warning
-                           ;; suitably available fallback
-                           font-lock-warning-face)
+       (propertize " [waiting...]"
+                   'face 'font-lock-variable-name-face
                    'help-echo
                    "A VC command is in progress in this buffer")))