From: ShengHuo ZHU Date: Sat, 4 Nov 2000 17:02:02 +0000 (+0000) Subject: * calendar/calendar.el (diary-face, holiday-face): Fix typo. X-Git-Tag: emacs-pretest-21.0.90~309 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ad88b950fecfbee5b34800e3d3ce60c2c5993be5;p=emacs.git * calendar/calendar.el (diary-face, holiday-face): Fix typo. * info.el (info-menu-header): Fix typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b5901c31cab..86e6ae469b3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2000-11-04 11:48:02 ShengHuo ZHU + + * calendar/calendar.el (diary-face, holiday-face): Fix typo. + * info.el (info-menu-header): Fix typo. + 2000-11-04 Jason Rumney * language/european.el (decode-mac-roman): Test against r1 not r0. diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 8773cc8746b..38b2b13a4ca 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -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) diff --git a/lisp/info.el b/lisp/info.el index 9676dcf4ff0..c97d8bcc0af 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -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)