diff options
-rw-r--r-- | lisp/vc/diff-mode.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index 1d838e66281..bb1c46c070a 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el @@ -358,12 +358,14 @@ well." "`diff-mode' face used to highlight added lines.") (defface diff-changed-unspecified - '((((class color) (min-colors 88) (background light)) - :background "grey90") + '((default + :inherit diff-changed) + (((class color) (min-colors 88) (background light)) + :background "grey90" :extend t) (((class color) (min-colors 88) (background dark)) - :background "grey20") + :background "grey20" :extend t) (((class color)) - :foreground "grey")) + :foreground "grey" :extend t)) "`diff-mode' face used to highlight changed lines." :version "28.1") |