changeset 92718:1fc51cacf009

(vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
author Glenn Morris <rgm@gnu.org>
date Tue, 11 Mar 2008 02:58:58 +0000
parents fec088bf4a02
children dc9438eed764
files lisp/vc.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc.el	Tue Mar 11 02:58:23 2008 +0000
+++ b/lisp/vc.el	Tue Mar 11 02:58:58 2008 +0000
@@ -1065,10 +1065,10 @@
 
 (defun vc-set-mode-line-busy-indicator ()
   (setq mode-line-process
-	(propertize " [waiting...]"
-		    'face 'font-lock-variable-name-face
-		    'help-echo
-		    "A VC command is in progress in this buffer")))
+	(concat " " (propertize "[waiting...]"
+                                'face 'mode-line-emphasis
+                                'help-echo
+                                "A VC command is in progress in this buffer"))))
 
 (defun vc-exec-after (code)
   "Eval CODE when the current buffer's process is done.