]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: search face bugfix
authorMark Walters <markwalters1009@gmail.com>
Wed, 12 Oct 2016 07:39:21 +0000 (08:39 +0100)
committerDavid Bremner <david@tethera.net>
Wed, 19 Oct 2016 11:39:58 +0000 (08:39 -0300)
In commit 2a7b11b064233afc4feead876fa396e3c18a6b91 the default faces
for unread and flagged were accidentally swapped. This swaps them back.

emacs/notmuch.el

index a7e0f2c178408eef2a98c8692281d40e4d6e7c97..9c7f2020bdb9ab0cde0908d8ac84d01f19a50412 100644 (file)
@@ -313,7 +313,7 @@ there will be called at other points of notmuch execution."
 
 (defface notmuch-search-flagged-face
   '((t
 
 (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
   "Face used in search mode face for flagged threads.
 
 This face is the default value for the \"flagged\" tag in
@@ -323,7 +323,7 @@ This face is the default value for the \"flagged\" tag in
 
 (defface notmuch-search-unread-face
   '((t
 
 (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
   "Face used in search mode for unread threads.
 
 This face is the default value for the \"unread\" tag in