diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-31 20:44:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-31 20:44:44 +0000 |
commit | 1fd714a4109f5b115bd28142d8c80641eac8f652 (patch) | |
tree | a17ba546689260ecb6c04858e2ef1adc3900fc82 /lisp/generic-x.el | |
parent | 58b64ac7d948b58b5fa0c1b5f7fce04a3f5b2652 (diff) | |
download | emacs-1fd714a4109f5b115bd28142d8c80641eac8f652.tar.gz |
(various face definitions): Use :weight, not :bold.
Diffstat (limited to 'lisp/generic-x.el')
-rw-r--r-- | lisp/generic-x.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/generic-x.el b/lisp/generic-x.el index 7b2c86a7c7b..e8412ce592c 100644 --- a/lisp/generic-x.el +++ b/lisp/generic-x.el @@ -1646,20 +1646,20 @@ you must reload generic-x to enable the specified modes." ("\t+" . 'show-tabs-tab-face))) (defface show-tabs-tab-face - '((((class grayscale) (background light)) (:foreground "LightGray" :bold t)) - (((class grayscale) (background dark)) (:foreground "DimGray" :bold t)) + '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold)) + (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold)) (((class color) (background light)) (:foreground "red")) (((class color) (background dark)) (:foreground "red")) - (t (:bold t))) + (t (:weight bold))) "Font Lock mode face used to highlight TABs." :group 'show-tabs) (defface show-tabs-space-face - '((((class grayscale) (background light)) (:foreground "LightGray" :bold t)) - (((class grayscale) (background dark)) (:foreground "DimGray" :bold t)) + '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold)) + (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold)) (((class color) (background light)) (:foreground "yellow")) (((class color) (background dark)) (:foreground "yellow")) - (t (:bold t))) + (t (:weight bold))) "Font Lock mode face used to highlight spaces." :group 'show-tabs) |