emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-27 ef5fba9: Fix faces tab-bar and tab-line.


From: Juri Linkov
Subject: emacs-27 ef5fba9: Fix faces tab-bar and tab-line.
Date: Tue, 4 Feb 2020 18:27:38 -0500 (EST)

branch: emacs-27
commit ef5fba9f40c8d3bdb314af2e00a51398d112d357
Author: Juri Linkov <address@hidden>
Commit: Juri Linkov <address@hidden>

    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.
---
 lisp/tab-bar.el  | 4 ++--
 lisp/tab-line.el | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index ebb0c56..fac27f4 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))
diff --git a/lisp/tab-line.el b/lisp/tab-line.el
index 149fe82..8f1221a 100644
--- a/lisp/tab-line.el
+++ b/lisp/tab-line.el
@@ -42,12 +42,12 @@
   :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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]