+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.
(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.