diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2019-12-02 01:33:41 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2019-12-02 01:33:41 +0200 |
commit | 3dd7de625f13ac2ce85af6c28b91ce4bbcd972ac (patch) | |
tree | 3139bc736631c5e3001e2715a476eddc03209802 | |
parent | 9f2145f42daab13aed5cf89fdb6a7c5579819ec0 (diff) | |
download | emacs-3dd7de625f13ac2ce85af6c28b91ce4bbcd972ac.tar.gz |
* lisp/vc/diff-mode.el (diff-context): Set 'extend t' (bug#37774).
-rw-r--r-- | lisp/vc/diff-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index 08998fbc776..b7d59bef8ab 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el @@ -384,9 +384,9 @@ well." "`diff-mode' face used to highlight function names produced by \"diff -p\".") (defface diff-context - '((t nil)) + '((t :extend t)) "`diff-mode' face used to highlight context and other side-information." - :version "25.1") + :version "27.1") (defface diff-nonexistent '((t :inherit diff-file-header)) |