From: Juri Linkov Date: Thu, 12 Dec 2019 23:43:35 +0000 (+0200) Subject: * lisp/wid-edit.el (widget-field): Add ':extend t' to defface (bug#37774) X-Git-Tag: emacs-27.0.90~366 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b5781e63cbe7e4c24e4eea3a400880857348ad19;p=emacs.git * lisp/wid-edit.el (widget-field): Add ':extend t' to defface (bug#37774) --- diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 94ab938a227..2dd19622be3 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -126,15 +126,19 @@ This exists as a variable so it can be set locally in certain buffers.") ;; background, at least on light-background TTYs. (defface widget-field '((((type tty)) :background "yellow3" - :foreground "black") + :foreground "black" + :extend t) (((class grayscale color) (background light)) - :background "gray85") + :background "gray85" + :extend t) (((class grayscale color) (background dark)) - :background "dim gray") + :background "dim gray" + :extend t) (t - :slant italic)) + :slant italic + :extend t)) "Face used for editable fields." :group 'widget-faces)