mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
* lisp/vc/ediff-init.el (ediff-current-diff-Ancestor)
(ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B) (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A) (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor): Add `min-colors 88' version with removed black/white foregrounds. Fixes: debbugs:10181
This commit is contained in:
parent
1a63945352
commit
382ceb2cdb
2 changed files with 33 additions and 4 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2014-06-18 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* vc/ediff-init.el (ediff-current-diff-Ancestor)
|
||||
(ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
|
||||
(ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
|
||||
(ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
|
||||
Add `min-colors 88' version with removed black/white foregrounds.
|
||||
(Bug#10181)
|
||||
|
||||
2014-06-18 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* vc/diff-mode.el (diff-changed): Empty face definition to use
|
||||
|
|
|
|||
|
|
@ -949,7 +949,9 @@ this variable represents.")
|
|||
|
||||
(defface ediff-current-diff-Ancestor
|
||||
(if (featurep 'emacs)
|
||||
'((((class color) (min-colors 16))
|
||||
'((((class color) (min-colors 88))
|
||||
(:background "VioletRed"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "Black" :background "VioletRed"))
|
||||
(((class color))
|
||||
(:foreground "black" :background "magenta3"))
|
||||
|
|
@ -1057,7 +1059,9 @@ this variable represents.")
|
|||
|
||||
(defface ediff-fine-diff-Ancestor
|
||||
(if (featurep 'emacs)
|
||||
'((((class color) (min-colors 16))
|
||||
'((((class color) (min-colors 88))
|
||||
(:background "Green"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "Black" :background "Green"))
|
||||
(((class color))
|
||||
(:foreground "red3" :background "green"))
|
||||
|
|
@ -1091,6 +1095,8 @@ this variable represents.")
|
|||
(if (featurep 'emacs)
|
||||
`((((type pc))
|
||||
(:foreground "green3" :background "light grey"))
|
||||
(((class color) (min-colors 88))
|
||||
(:background "light grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "Black" :background "light grey"))
|
||||
(((class color))
|
||||
|
|
@ -1115,7 +1121,9 @@ this variable represents.")
|
|||
|
||||
(defface ediff-even-diff-B
|
||||
(if (featurep 'emacs)
|
||||
`((((class color) (min-colors 16))
|
||||
`((((class color) (min-colors 88))
|
||||
(:background "Grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "White" :background "Grey"))
|
||||
(((class color))
|
||||
(:foreground "blue3" :background "Grey" :weight bold))
|
||||
|
|
@ -1138,6 +1146,8 @@ this variable represents.")
|
|||
(if (featurep 'emacs)
|
||||
`((((type pc))
|
||||
(:foreground "yellow3" :background "light grey"))
|
||||
(((class color) (min-colors 88))
|
||||
(:background "light grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "Black" :background "light grey"))
|
||||
(((class color))
|
||||
|
|
@ -1164,6 +1174,8 @@ this variable represents.")
|
|||
(if (featurep 'emacs)
|
||||
`((((type pc))
|
||||
(:foreground "cyan3" :background "light grey"))
|
||||
(((class color) (min-colors 88))
|
||||
(:background "Grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "White" :background "Grey"))
|
||||
(((class color))
|
||||
|
|
@ -1197,6 +1209,8 @@ this variable represents.")
|
|||
(if (featurep 'emacs)
|
||||
'((((type pc))
|
||||
(:foreground "green3" :background "gray40"))
|
||||
(((class color) (min-colors 88))
|
||||
(:background "Grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "White" :background "Grey"))
|
||||
(((class color))
|
||||
|
|
@ -1222,6 +1236,8 @@ this variable represents.")
|
|||
(if (featurep 'emacs)
|
||||
'((((type pc))
|
||||
(:foreground "White" :background "gray40"))
|
||||
(((class color) (min-colors 88))
|
||||
(:background "light grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "Black" :background "light grey"))
|
||||
(((class color))
|
||||
|
|
@ -1246,6 +1262,8 @@ this variable represents.")
|
|||
(if (featurep 'emacs)
|
||||
'((((type pc))
|
||||
(:foreground "yellow3" :background "gray40"))
|
||||
(((class color) (min-colors 88))
|
||||
(:background "Grey"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "White" :background "Grey"))
|
||||
(((class color))
|
||||
|
|
@ -1268,7 +1286,9 @@ this variable represents.")
|
|||
|
||||
(defface ediff-odd-diff-Ancestor
|
||||
(if (featurep 'emacs)
|
||||
'((((class color) (min-colors 16))
|
||||
'((((class color) (min-colors 88))
|
||||
(:background "gray40"))
|
||||
(((class color) (min-colors 16))
|
||||
(:foreground "cyan3" :background "gray40"))
|
||||
(((class color))
|
||||
(:foreground "green3" :background "black" :weight bold))
|
||||
|
|
|
|||
Loading…
Reference in a new issue