changeset 19248:52b2d9fc00a4

Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Sat, 09 Aug 1997 16:46:53 +0000
parents 90c5343cf243
children 5514182f76c0
files lisp/calendar/calendar.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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))