diff options
author | Protesilaos Stavrou <info@protesilaos.com> | 2020-11-29 11:43:38 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-11-29 11:43:38 +0100 |
commit | 38ed05f49fcfe7c6d6908041010881a04a7ff6b1 (patch) | |
tree | 649e6a473800eb5185f051e4fae65c9e6e37f7cc | |
parent | bb0e6fb8862480dbabc971a1ef34721a701c1288 (diff) | |
download | emacs-38ed05f49fcfe7c6d6908041010881a04a7ff6b1.tar.gz emacs-38ed05f49fcfe7c6d6908041010881a04a7ff6b1.tar.bz2 emacs-38ed05f49fcfe7c6d6908041010881a04a7ff6b1.zip |
Make log-view-commit-body less intrusive
* lisp/vc/log-view.el (log-view-commit-body): Inherit from
font-lock-comment-face. This makes expanded commit messages in
log-view look the same as they did prior to commit 1f0b929430 (consult
bug#44424) (bug#44937).
-rw-r--r-- | lisp/vc/log-view.el | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lisp/vc/log-view.el b/lisp/vc/log-view.el index 56ecc64671c..e7b6eea807c 100644 --- a/lisp/vc/log-view.el +++ b/lisp/vc/log-view.el @@ -208,15 +208,7 @@ If it is nil, `log-view-toggle-entry-display' does nothing.") "Face for the message header line in `log-view-mode'." :group 'log-view) -(defface log-view-commit-body - '((((class color) (min-colors 88) (background light)) - :background "gray95" :foreground "black" :extend t) - (((class color) (min-colors 88) (background dark)) - :background "gray5" :foreground "white" :extend t) - (((class color) (min-colors 8) (background light)) - :foreground "black") - (((class color) (min-colors 8) (background dark)) - :foreground "white")) +(defface log-view-commit-body '((t :inherit font-lock-comment-face)) "Face for the commit body in `log-view-mode'." :version "28.1") |