changeset 33205:8b4c25bb65d8

* calendar/calendar.el (diary-face, holiday-face): Fix typo. * info.el (info-menu-header): Fix typo.
author ShengHuo ZHU <zsh@cs.rochester.edu>
date Sat, 04 Nov 2000 17:02:02 +0000
parents 3b4c21189166
children 7feabfeb41cc
files lisp/ChangeLog lisp/calendar/calendar.el lisp/info.el
diffstat 3 files changed, 13 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sat Nov 04 11:43:36 2000 +0000
+++ b/lisp/ChangeLog	Sat Nov 04 17:02:02 2000 +0000
@@ -1,3 +1,8 @@
+2000-11-04 11:48:02  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+	* calendar/calendar.el (diary-face, holiday-face): Fix typo.
+	* info.el (info-menu-header): Fix typo.
+
 2000-11-04  Jason Rumney  <jasonr@gnu.org>
 
 	* language/european.el (decode-mac-roman): Test against r1 not r0.
--- a/lisp/calendar/calendar.el	Sat Nov 04 11:43:36 2000 +0000
+++ b/lisp/calendar/calendar.el	Sat Nov 04 17:02:02 2000 +0000
@@ -207,11 +207,11 @@
 (add-to-list 'facemenu-unlisted-faces 'diary-face)
 (defface diary-face
   '((((class color) (background light))
-     :foreground "red")
+     (:foreground "red"))
     (((class color) (background dark))
-     :foreground "yellow")
+     (:foreground "yellow"))
     (t
-     :bold t))
+     (:bold t)))
   "Face for highlighting diary entries."
   :group 'diary)
 
@@ -224,11 +224,11 @@
 (add-to-list 'facemenu-unlisted-faces 'holiday-face)
 (defface holiday-face
   '((((class color) (background light))
-     :background "pink")
+     (:background "pink"))
     (((class color) (background dark))
-     :background "chocolate4")
+     (:background "chocolate4"))
     (t
-     :inverse-video t))
+     (:inverse-video t)))
   "Face for indicating dates that have holidays."
   :group 'diary)
 
--- a/lisp/info.el	Sat Nov 04 11:43:36 2000 +0000
+++ b/lisp/info.el	Sat Nov 04 17:02:02 2000 +0000
@@ -2387,11 +2387,9 @@
 
 (defface info-menu-header
   '((((type tty pc))
-     :underline t
-     :weight bold)
+     (:underline t :weight bold))
     (t
-     :inherit variable-pitch
-     :weight bold))
+     (:inherit variable-pitch :weight bold)))
   "Face for headers in Info menus."
   :group 'info)