diff options
author | Eli Zaretskii <eliz@gnu.org> | 2004-05-20 16:45:28 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2004-05-20 16:45:28 +0000 |
commit | 88537a99d684a40aeaf960a277447caf575d689a (patch) | |
tree | bd985f97671cfaae20bc152ba29bbe3effbb9ee9 /lisp/compare-w.el | |
parent | 013d402e904390717e1e10d0c9815999d5ea51d7 (diff) | |
download | emacs-88537a99d684a40aeaf960a277447caf575d689a.tar.gz |
(compare-windows-face): Use min-colors instead of
checking for tty or pc types.
Diffstat (limited to 'lisp/compare-w.el')
-rw-r--r-- | lisp/compare-w.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/compare-w.el b/lisp/compare-w.el index d283016750f..7e23c9efedf 100644 --- a/lisp/compare-w.el +++ b/lisp/compare-w.el @@ -1,6 +1,6 @@ ;;; compare-w.el --- compare text between windows for Emacs -;; Copyright (C) 1986, 1989, 1993, 1997, 2003 Free Software Foundation, Inc. +;; Copyright (C) 1986,1989,1993,1997,2003,2004 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: convenience files @@ -117,12 +117,12 @@ and the value `((4) (4))' for horizontally split windows." :group 'compare-w) (defface compare-windows-face - '((((type tty pc) (class color)) - (:background "turquoise3")) - (((class color) (background light)) + '((((class color) (min-colors 88) (background light)) (:background "paleturquoise")) - (((class color) (background dark)) + (((class color) (min-colors 88) (background dark)) (:background "paleturquoise4")) + (((class color)) + (:background "turquoise3")) (t (:underline t))) "Face for highlighting of compare-windows difference regions." :group 'compare-w) |