From: Richard M. Stallman Date: Sat, 9 Aug 1997 16:46:53 +0000 (+0000) Subject: Fix previous change. X-Git-Tag: emacs-20.1~700 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d5d0314a8aa56d41a7d3961517aa66ecfd195ab7;p=emacs.git Fix previous change. --- diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 7432882108c..53273950b86 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -191,7 +191,8 @@ The marking symbol is specified by the variable `diary-entry-marker'." (when window-system (add-to-list 'facemenu-unlisted-faces 'diary-face) (defface diary-face - '(((:class color) (:foreground "red")) + '((((class color)) + (:foreground "red")) (t (:bold t))) "Face for highlighting diary entries." :group 'diary) @@ -204,7 +205,8 @@ The marking symbol is specified by the variable `diary-entry-marker'." (add-to-list 'facemenu-unlisted-faces 'holiday-face) (defface holiday-face - '(((:class color) (:background "pink")) + '((((class color)) + (:background "pink")) (t (:inverse-video t))) "Face for indicating dates that have holidays." :group 'diary))