summaryrefslogtreecommitdiff
path: root/lisp/generic-x.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/generic-x.el')
-rw-r--r--lisp/generic-x.el12
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)