summaryrefslogtreecommitdiff
path: root/lisp/tab-bar.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2020-02-05 01:27:30 +0200
committerJuri Linkov <juri@linkov.net>2020-02-05 01:27:30 +0200
commitef5fba9f40c8d3bdb314af2e00a51398d112d357 (patch)
tree59be76c18ef2ecba275f5d18eb3e81a1a46c3209 /lisp/tab-bar.el
parent831508422e26e6d88dd5d8960e2569c489604c85 (diff)
downloademacs-ef5fba9f40c8d3bdb314af2e00a51398d112d357.tar.gz
Fix faces tab-bar and tab-line.
* lisp/tab-bar.el (tab-bar) <defface>: * lisp/tab-line.el (tab-line) <defface>: Check for min-colors 88 instead of type x.
Diffstat (limited to 'lisp/tab-bar.el')
-rw-r--r--lisp/tab-bar.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index ebb0c566ad1..fac27f41ba9 100644
--- a/lisp/tab-bar.el
+++ b/lisp/tab-bar.el
@@ -51,11 +51,11 @@
:version "27.1")
(defface tab-bar
- '((((type x w32 ns) (class color))
+ '((((class color) (min-colors 88))
:inherit variable-pitch
:background "grey85"
:foreground "black")
- (((type x) (class mono))
+ (((class mono))
:background "grey")
(t
:inverse-video t))