Adjust previous diff-changed-unspecified change

* lisp/vc/diff-mode.el (diff-changed-unspecified): Adjust the
definition to Emacs 28 (bug#26969).
This commit is contained in:
Lars Ingebrigtsen 2021-08-13 15:37:21 +02:00
parent 4d51c2c472
commit e30c7f314b

View file

@ -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")