From: Lars Ingebrigtsen Date: Sat, 31 Jul 2021 14:52:44 +0000 (+0200) Subject: Extend whitespace-empty to the end of the line X-Git-Tag: emacs-28.0.90~1626 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c4239ec32c944e74252937bfc52e341f81b7a5a4;p=emacs.git Extend whitespace-empty to the end of the line * lisp/whitespace.el (whitespace-empty): Restore Emacs 26 look by extending the face (bug#42112). --- 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)