diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2019-11-30 13:27:11 +0200 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2019-11-30 13:27:11 +0200 |
| commit | 64687872f62e7837340b77697d4ccd4f60caaae0 (patch) | |
| tree | bf42f6eef4ea64420edba2395ae77914c69a82fd /lisp/vc/log-view.el | |
| parent | abd3dd3a467fd93ac66db1a13b31787d88a95d55 (diff) | |
| download | emacs-64687872f62e7837340b77697d4ccd4f60caaae0.tar.gz | |
Add ':extend' attribute to faces and themes
* etc/themes/wombat-theme.el:
* etc/themes/wheatgrass-theme.el:
* etc/themes/tsdh-light-theme.el:
* etc/themes/tsdh-dark-theme.el:
* etc/themes/tango-theme.el:
* etc/themes/tango-dark-theme.el:
* etc/themes/misterioso-theme.el:
* etc/themes/manoj-dark-theme.el:
* etc/themes/light-blue-theme.el:
* etc/themes/leuven-theme.el:
* etc/themes/dichromacy-theme.el:
* etc/themes/deeper-blue-theme.el:
* etc/themes/adwaita-theme.el: Add ':extend' attribute to all
faces that are by default defined with it.
* lisp/vc/smerge-mode.el (smerge-upper, smerge-lower)
(smerge-base):
* lisp/vc/log-view.el (log-view-file, log-view-message):
* lisp/vc/ediff-init.el (ediff-current-diff-A)
(ediff-current-diff-B, ediff-current-diff-C)
(ediff-current-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):
* lisp/vc/diff-mode.el (diff-header, diff-file-header)
(diff-removed, diff-added): Make sure all definitions of faces
have the same value of the ':extend' property, otherwise
customizing background color or underline etc. attributes of
these faces on some displays will produce effects different
from other displays.
Diffstat (limited to 'lisp/vc/log-view.el')
| -rw-r--r-- | lisp/vc/log-view.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc/log-view.el b/lisp/vc/log-view.el index 054c2b91340..31d833c6f39 100644 --- a/lisp/vc/log-view.el +++ b/lisp/vc/log-view.el @@ -197,14 +197,14 @@ If it is nil, `log-view-toggle-entry-display' does nothing.") (defface log-view-file '((((class color) (background light)) (:background "grey70" :weight bold :extend t)) - (t (:weight bold))) + (t (:weight bold :extend t))) "Face for the file header line in `log-view-mode'." :group 'log-view) (defface log-view-message '((((class color) (background light)) (:background "grey85" :extend t)) - (t (:weight bold))) + (t (:weight bold :extend t))) "Face for the message header line in `log-view-mode'." :group 'log-view) |
