1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-06 11:55:48 +00:00

Add ':extend t' to mm-uu-extract face

* lisp/gnus/mm-uu.el (mm-uu-extract): Add ':extend t' to mm-uu-extract
face.
This commit is contained in:
Tassilo Horn 2020-02-05 18:07:09 +01:00
parent feb681dc36
commit 0609dd481a

View File

@ -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."