From 0609dd481a3f6d0dfa598666d8068fa7e8c9d2f2 Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Wed, 5 Feb 2020 18:07:09 +0100 Subject: [PATCH] Add ':extend t' to mm-uu-extract face * lisp/gnus/mm-uu.el (mm-uu-extract): Add ':extend t' to mm-uu-extract face. --- lisp/gnus/mm-uu.el | 12 ++++++++---- 1 file 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." -- 2.39.5