summaryrefslogtreecommitdiff
path: root/lisp/wid-edit.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2019-12-13 01:43:35 +0200
committerJuri Linkov <juri@linkov.net>2019-12-13 01:43:35 +0200
commitb5781e63cbe7e4c24e4eea3a400880857348ad19 (patch)
treee64e3469431502552b41027eb8bb97de8e4f83fc /lisp/wid-edit.el
parentf16766a0eb2a78b58a4856d31306fc37f913d70e (diff)
downloademacs-b5781e63cbe7e4c24e4eea3a400880857348ad19.tar.gz
emacs-b5781e63cbe7e4c24e4eea3a400880857348ad19.tar.bz2
emacs-b5781e63cbe7e4c24e4eea3a400880857348ad19.zip
* lisp/wid-edit.el (widget-field): Add ':extend t' to defface (bug#37774)
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r--lisp/wid-edit.el12
1 files 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)