# HG changeset patch # User Richard M. Stallman # Date 871145213 0 # Node ID 52b2d9fc00a424afc2014ba9b8b703f5d9e65f44 # Parent 90c5343cf243c0e5811abb1e98d8601950574e55 Fix previous change. diff -r 90c5343cf243 -r 52b2d9fc00a4 lisp/calendar/calendar.el --- a/lisp/calendar/calendar.el Sat Aug 09 08:10:48 1997 +0000 +++ b/lisp/calendar/calendar.el Sat Aug 09 16:46:53 1997 +0000 @@ -191,7 +191,8 @@ (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 @@ (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))