mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
Revoke the change.
This commit is contained in:
parent
1ba90166d0
commit
42121c2309
@ -3,11 +3,6 @@
|
||||
* vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
|
||||
auto-save-mode.
|
||||
|
||||
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.
|
||||
|
@ -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)
|
||||
|
||||
|
@ -2387,9 +2387,11 @@ 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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user