[PATCH] emacs: search face bugfix
Tomi Ollila
tomi.ollila at iki.fi
Wed Oct 12 01:37:49 PDT 2016
On Wed, Oct 12 2016, Mark Walters <markwalters1009 at gmail.com> wrote:
> In commit 2a7b11b064233afc4feead876fa396e3c18a6b91 the default faces
> for unread and flagged were accidentally swapped. This swaps them back.
> ---
>
> rlb reported this on irc yesterday. I am assuming all the rest of us
> had customized notmuch-search-line-faces and so weren't affected.
LGTM. +1 for 0.23.1
>
> Best wishes
>
> Mark
>
>
>
> emacs/notmuch.el | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/emacs/notmuch.el b/emacs/notmuch.el
> index 6c36ad8..2834d44 100644
> --- a/emacs/notmuch.el
> +++ b/emacs/notmuch.el
> @@ -314,7 +314,7 @@ there will be called at other points of notmuch execution."
>
> (defface notmuch-search-flagged-face
> '((t
> - (:weight bold)))
> + (:foreground "blue")))
> "Face used in search mode face for flagged threads.
>
> This face is the default value for the \"flagged\" tag in
> @@ -324,7 +324,7 @@ This face is the default value for the \"flagged\" tag in
>
> (defface notmuch-search-unread-face
> '((t
> - (:foreground "blue")))
> + (:weight bold)))
> "Face used in search mode for unread threads.
>
> This face is the default value for the \"unread\" tag in
> --
> 2.1.4
>
> _______________________________________________
> notmuch mailing list
> notmuch at notmuchmail.org
> https://notmuchmail.org/mailman/listinfo/notmuch
More information about the notmuch
mailing list