diff options
| author | Richard M. Stallman | 1997-08-03 22:57:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-03 22:57:46 +0000 |
| commit | 65f1589593233c75b6aaf5797eac437db09a066c (patch) | |
| tree | c3fc9e6dd68fd0b54fab798ea55b6a18c63a475d | |
| parent | 9314395d3f3c8d5d943694a0501da54f77490376 (diff) | |
| download | emacs-65f1589593233c75b6aaf5797eac437db09a066c.tar.gz emacs-65f1589593233c75b6aaf5797eac437db09a066c.zip | |
Fix previous change.
| -rw-r--r-- | lisp/calendar/calendar.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index d1642cdc547..7432882108c 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -191,7 +191,7 @@ The marking symbol is specified by the variable `diary-entry-marker'." | |||
| 191 | (when window-system | 191 | (when window-system |
| 192 | (add-to-list 'facemenu-unlisted-faces 'diary-face) | 192 | (add-to-list 'facemenu-unlisted-faces 'diary-face) |
| 193 | (defface diary-face | 193 | (defface diary-face |
| 194 | '(((:class color) :foreground "red") | 194 | '(((:class color) (:foreground "red")) |
| 195 | (t (:bold t))) | 195 | (t (:bold t))) |
| 196 | "Face for highlighting diary entries." | 196 | "Face for highlighting diary entries." |
| 197 | :group 'diary) | 197 | :group 'diary) |
| @@ -204,7 +204,7 @@ The marking symbol is specified by the variable `diary-entry-marker'." | |||
| 204 | 204 | ||
| 205 | (add-to-list 'facemenu-unlisted-faces 'holiday-face) | 205 | (add-to-list 'facemenu-unlisted-faces 'holiday-face) |
| 206 | (defface holiday-face | 206 | (defface holiday-face |
| 207 | '(((:class color) :background "pink") | 207 | '(((:class color) (:background "pink")) |
| 208 | (t (:inverse-video t))) | 208 | (t (:inverse-video t))) |
| 209 | "Face for indicating dates that have holidays." | 209 | "Face for indicating dates that have holidays." |
| 210 | :group 'diary)) | 210 | :group 'diary)) |