]> git.eshelyaron.com Git - emacs.git/commitdiff
* calendar/calendar.el (diary-face, holiday-face): Fix typo.
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 4 Nov 2000 17:02:02 +0000 (17:02 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 4 Nov 2000 17:02:02 +0000 (17:02 +0000)
* info.el (info-menu-header): Fix typo.

lisp/ChangeLog
lisp/calendar/calendar.el
lisp/info.el

index b5901c31cab32b379a78768d4276c2bf08fbcf94..86e6ae469b3e4d93e38f7f35531dc6a19ddb73f7 100644 (file)
@@ -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.
index 8773cc8746b50d191ce2ea8b16deaad2ffa2ecb4..38b2b13a4ca02636359daf82a8aec0d0a3b26c33 100644 (file)
@@ -207,11 +207,11 @@ If nil, make an icon of the frame.  If non-nil, delete the frame."
 (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 @@ If nil, make an icon of the frame.  If non-nil, delete the frame."
 (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)
 
index 9676dcf4ff024c0a6aeb6b90a18b0ed43d0b3bcc..c97d8bcc0af6c7706e077126e3a14ad15e2f322d 100644 (file)
@@ -2387,11 +2387,9 @@ the variable `Info-file-list-for-emacs'."
 
 (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)