Mercurial > emacs
diff lisp/gnus/message.el @ 42475:1e4516b1d514
2002-01-01 ShengHuo ZHU <zsh@cs.rochester.edu>
* message.el, gnus-art.el, gnus.el, gnus-cite.el:
Adapt face definitions to use :weight and :slant.
author | ShengHuo ZHU <zsh@cs.rochester.edu> |
---|---|
date | Wed, 02 Jan 2002 03:36:29 +0000 |
parents | a96c3ddfa03e |
children | e14b8be37d7d |
line wrap: on
line diff
--- a/lisp/gnus/message.el Tue Jan 01 22:14:32 2002 +0000 +++ b/lisp/gnus/message.el Wed Jan 02 03:36:29 2002 +0000 @@ -1,5 +1,5 @@ ;;; message.el --- composing mail and news messages -*- coding: iso-latin-1 -*- -;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 +;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> @@ -716,24 +716,24 @@ (defface message-header-to-face '((((class color) (background dark)) - (:foreground "green2" :bold t)) + (:foreground "green2" :weight bold)) (((class color) (background light)) - (:foreground "MidnightBlue" :bold t)) + (:foreground "MidnightBlue" :weight bold)) (t - (:bold t :italic t))) + (:weight bold :slant italic))) "Face used for displaying From headers." :group 'message-faces) (defface message-header-cc-face '((((class color) (background dark)) - (:foreground "green4" :bold t)) + (:foreground "green4" :weight bold)) (((class color) (background light)) (:foreground "MidnightBlue")) (t - (:bold t))) + (:weight bold))) "Face used for displaying Cc headers." :group 'message-faces) @@ -743,21 +743,21 @@ (:foreground "green3")) (((class color) (background light)) - (:foreground "navy blue" :bold t)) + (:foreground "navy blue" :weight bold)) (t - (:bold t))) + (:weight bold))) "Face used for displaying subject headers." :group 'message-faces) (defface message-header-newsgroups-face '((((class color) (background dark)) - (:foreground "yellow" :bold t :italic t)) + (:foreground "yellow" :weight bold :slant italic)) (((class color) (background light)) - (:foreground "blue4" :bold t :italic t)) + (:foreground "blue4" :weight bold :slant italic)) (t - (:bold t :italic t))) + (:weight bold :slant italic))) "Face used for displaying newsgroups headers." :group 'message-faces) @@ -769,7 +769,7 @@ (background light)) (:foreground "steel blue")) (t - (:bold t :italic t))) + (:weight bold :slant italic))) "Face used for displaying newsgroups headers." :group 'message-faces) @@ -781,7 +781,7 @@ (background light)) (:foreground "cornflower blue")) (t - (:bold t))) + (:weight bold))) "Face used for displaying header names." :group 'message-faces) @@ -793,7 +793,7 @@ (background light)) (:foreground "blue")) (t - (:bold t))) + (:weight bold))) "Face used for displaying X-Header headers." :group 'message-faces) @@ -805,7 +805,7 @@ (background light)) (:foreground "brown")) (t - (:bold t))) + (:weight bold))) "Face used for displaying the separator." :group 'message-faces) @@ -817,7 +817,7 @@ (background light)) (:foreground "red")) (t - (:bold t))) + (:weight bold))) "Face used for displaying cited text names." :group 'message-faces) @@ -829,7 +829,7 @@ (background light)) (:foreground "ForestGreen")) (t - (:bold t))) + (:weight bold))) "Face used for displaying MML." :group 'message-faces)