]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/wid-edit.el (widget-field): Add ':extend t' to defface (bug#37774)
authorJuri Linkov <juri@linkov.net>
Thu, 12 Dec 2019 23:43:35 +0000 (01:43 +0200)
committerJuri Linkov <juri@linkov.net>
Thu, 12 Dec 2019 23:43:35 +0000 (01:43 +0200)
lisp/wid-edit.el

index 94ab938a227e678b7bbf81368d22c2689ea05ff2..2dd19622be30636a47562a00b4cc80ddfcfbc341 100644 (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)