aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calendar/calendar.el
diff options
context:
space:
mode:
authorShengHuo ZHU <[email protected]>2000-11-04 17:02:02 +0000
committerShengHuo ZHU <[email protected]>2000-11-04 17:02:02 +0000
commitad88b950fecfbee5b34800e3d3ce60c2c5993be5 (patch)
treed3df9b4974aaf806f6ff84a67cb34903a9e40e43 /lisp/calendar/calendar.el
parent546790cb86f111943d57627ca6049a033e2cff7e (diff)
* calendar/calendar.el (diary-face, holiday-face): Fix typo.
* info.el (info-menu-header): Fix typo.
Diffstat (limited to 'lisp/calendar/calendar.el')
-rw-r--r--lisp/calendar/calendar.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index 8773cc8746..38b2b13a4c 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)