]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Sat, 9 Aug 1997 16:46:53 +0000 (16:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 9 Aug 1997 16:46:53 +0000 (16:46 +0000)
lisp/calendar/calendar.el

index 7432882108ca4837d6954a7f95c06232db47a8d3..53273950b869fc7daee616203d11af2c5f5f836c 100644 (file)
@@ -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))