aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Kan-Ru Chen <kanru@kanru.info>2009-11-22 14:40:59 +0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-22 13:22:36 +0100
commit6b823b6fba4b2802f9d72f62ff4f6e44809d5449 (patch)
tree4f90c71cfc9a2d075a2d9e5c8dd27511644b2f2b
parent018ca890a3e6ca1cb1068fd789674e475c4a285f (diff)
Fix invalid face reference.
To avoid the "Invalid face reference: cons [18 times]" kind of message goes on and on in the *Messages*. Signed-off-by: Kan-Ru Chen <kanru@kanru.info>
-rw-r--r--notmuch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.el b/notmuch.el
index 0144b612..a5474158 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -553,7 +553,7 @@ which this thread was originally shown."
(let ((beg (point-marker)))
(end-of-line)
; Inverse video for subject
- (overlay-put (make-overlay beg (point)) 'face '((cons :inverse-video t)))
+ (overlay-put (make-overlay beg (point)) 'face '(:inverse-video t))
(forward-line 2)
(let ((beg-hidden (point-marker)))
(re-search-forward notmuch-show-header-end-regexp)