summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-07-31 16:52:44 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-07-31 16:52:44 +0200
commitc4239ec32c944e74252937bfc52e341f81b7a5a4 (patch)
tree4246204b797a3889baff78b6b31fe59cf553e881 /lisp/whitespace.el
parent5ecf39a5eab1c697b5d15c3b5df230bf7d1a11b2 (diff)
downloademacs-c4239ec32c944e74252937bfc52e341f81b7a5a4.tar.gz
Extend whitespace-empty to the end of the line
* lisp/whitespace.el (whitespace-empty): Restore Emacs 26 look by extending the face (bug#42112).
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index aaa56835cdd..a2dc6ab9814 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -593,7 +593,7 @@ Used when `whitespace-style' includes the value `empty'.")
(defface whitespace-empty
'((((class mono)) :inverse-video t :weight bold :underline t)
- (t :background "yellow" :foreground "firebrick"))
+ (t :background "yellow" :foreground "firebrick" :extend t))
"Face used to visualize empty lines at beginning and/or end of buffer."
:group 'whitespace)