]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix faces tab-bar and tab-line.
authorJuri Linkov <juri@linkov.net>
Tue, 4 Feb 2020 23:27:30 +0000 (01:27 +0200)
committerJuri Linkov <juri@linkov.net>
Tue, 4 Feb 2020 23:27:30 +0000 (01:27 +0200)
* lisp/tab-bar.el (tab-bar) <defface>:
* lisp/tab-line.el (tab-line) <defface>:
Check for min-colors 88 instead of type x.

lisp/tab-bar.el
lisp/tab-line.el

index ebb0c566ad1193984e903532549d6fc20e439e2f..fac27f41ba94f32d7e25c10a6e197e8ad68ffee5 100644 (file)
   :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))
index 149fe8289c49821d96ecc982499484dac02814f9..8f1221abe41756a4f4b4364a235b73205447a63e 100644 (file)
   :version "27.1")
 
 (defface tab-line
-  '((((type x w32 ns) (class color))
+  '((((class color) (min-colors 88))
      :inherit variable-pitch
      :height 0.9
      :background "grey85"
      :foreground "black")
-    (((type x) (class mono))
+    (((class mono))
      :background "grey")
     (t
      :inverse-video t))