From b5781e63cbe7e4c24e4eea3a400880857348ad19 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Fri, 13 Dec 2019 01:43:35 +0200 Subject: [PATCH] * lisp/wid-edit.el (widget-field): Add ':extend t' to defface (bug#37774) --- lisp/wid-edit.el | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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) -- 2.39.2