summaryrefslogtreecommitdiff
path: root/lisp/gnus/mm-uu.el
diff options
context:
space:
mode:
authorTassilo Horn <tsdh@gnu.org>2020-02-05 18:07:09 +0100
committerTassilo Horn <tsdh@gnu.org>2020-02-05 18:09:09 +0100
commit0609dd481a3f6d0dfa598666d8068fa7e8c9d2f2 (patch)
tree7f77c63af958b63ecad69a156bcd785a459bda60 /lisp/gnus/mm-uu.el
parentfeb681dc36cf8d086d326197a6db912f98b97773 (diff)
downloademacs-0609dd481a3f6d0dfa598666d8068fa7e8c9d2f2.tar.gz
Add ':extend t' to mm-uu-extract face
* lisp/gnus/mm-uu.el (mm-uu-extract): Add ':extend t' to mm-uu-extract face.
Diffstat (limited to 'lisp/gnus/mm-uu.el')
-rw-r--r--lisp/gnus/mm-uu.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/gnus/mm-uu.el b/lisp/gnus/mm-uu.el
index e6fdc93da24..61bf0a78c0e 100644
--- a/lisp/gnus/mm-uu.el
+++ b/lisp/gnus/mm-uu.el
@@ -251,19 +251,23 @@ The value should be nil on displays where the face
(((type tty)
(class color)
(background dark))
- (:background "dark blue"))
+ (:background "dark blue"
+ :extend t))
(((class color)
(background dark))
(:foreground "light yellow"
- :background "dark green"))
+ :background "dark green"
+ :extend t))
(((type tty)
(class color)
(background light))
- (:foreground "dark blue"))
+ (:foreground "dark blue"
+ :extend t))
(((class color)
(background light))
(:foreground "dark green"
- :background "light yellow"))
+ :background "light yellow"
+ :extend t))
(t
()))
"Face for extracted buffers."