diff options
author | Glenn Morris <rgm@gnu.org> | 2008-03-11 02:59:11 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-03-11 02:59:11 +0000 |
commit | c2062c3b91829ab8db01372ea83feb1c79371361 (patch) | |
tree | d7d64d8ea1938f57fea0f05df59d9d7d719d19d3 /lisp | |
parent | 313e2fc4880e0e8d2695ed70a80c954894a57d36 (diff) | |
download | emacs-c2062c3b91829ab8db01372ea83feb1c79371361.tar.gz emacs-c2062c3b91829ab8db01372ea83feb1c79371361.tar.bz2 emacs-c2062c3b91829ab8db01372ea83feb1c79371361.zip |
(vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 7 | ||||
-rw-r--r-- | lisp/vc.el | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ac48d809b10..263df5067f8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2008-03-11 Glenn Morris <rgm@gnu.org> + + * faces.el (mode-line-emphasis): New face. + * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face. + + * calendar/calendar.el (top-level): Load cal-loaddefs when compiling. + 2008-03-11 Chong Yidong <cyd@stupidchicken.com> * simple.el (set-mark-command): Doc fix. diff --git a/lisp/vc.el b/lisp/vc.el index a91c9c34953..6917afc7a49 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -1065,10 +1065,10 @@ 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 - (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. |