1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

* lisp/wid-edit.el (widget-field): Add ':extend t' to defface (bug#37774)

This commit is contained in:
Juri Linkov 2019-12-13 01:43:35 +02:00
parent f16766a0eb
commit b5781e63cb

View File

@ -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)