]> git.eshelyaron.com Git - emacs.git/commitdiff
(diff-header-face, diff-file-header-face): Use min-colors.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 2 May 2004 19:27:59 +0000 (19:27 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 2 May 2004 19:27:59 +0000 (19:27 +0000)
lisp/ChangeLog
lisp/diff-mode.el

index 6216d18c2a6b9543640a99ca90d7ff56f81725f0..ed2fc8561ca1e49b3b53af42cddd573103ada5c7 100644 (file)
@@ -1,3 +1,8 @@
+2004-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * diff-mode.el (diff-header-face, diff-file-header-face):
+       Use min-colors.
+
 2004-05-02  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
 
        * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
index 176023179581974a5835a589c9d59a9e7c4b1f4e..e95ac7422fe4a4495382fd801030dbc0883c2577 100644 (file)
@@ -169,27 +169,27 @@ when editing big diffs)."
 ;;;;
 
 (defface diff-header-face
-  '((((type tty pc) (class color) (background light))
-     (:foreground "blue1" :weight bold))
-    (((type tty pc) (class color) (background dark))
-     (:foreground "green" :weight bold))
-    (((class color) (background light))
+  '((((class color) (min-colors 88) (background light))
      (:background "grey85"))
-    (((class color) (background dark))
+    (((class color) (min-colors 88) (background dark))
      (:background "grey45"))
+    (((class color) (background light))
+     (:foreground "blue1" :weight bold))
+    (((class color) (background dark))
+     (:foreground "green" :weight bold))
     (t (:weight bold)))
   "`diff-mode' face inherited by hunk and index header faces.")
 (defvar diff-header-face 'diff-header-face)
 
 (defface diff-file-header-face
-  '((((type tty pc) (class color) (background light))
-     (:foreground "yellow" :weight bold))
-    (((type tty pc) (class color) (background dark))
-     (:foreground "cyan" :weight bold))
-    (((class color) (background light))
+  '((((class color) (min-colors 88) (background light))
      (:background "grey70" :weight bold))
-    (((class color) (background dark))
+    (((class color) (min-colors 88) (background dark))
      (:background "grey60" :weight bold))
+    (((class color) (background light))
+     (:foreground "yellow" :weight bold))
+    (((class color) (background dark))
+     (:foreground "cyan" :weight bold))
     (t (:weight bold)))                        ; :height 1.3
   "`diff-mode' face used to highlight file header lines.")
 (defvar diff-file-header-face 'diff-file-header-face)