Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 4E19B431FBC for ; Sat, 21 Nov 2009 22:55:09 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eAu3T5G1+tdN for ; Sat, 21 Nov 2009 22:55:08 -0800 (PST) X-Greylist: delayed 604 seconds by postgrey-1.32 at olra; Sat, 21 Nov 2009 22:55:06 PST Received: from msr18.hinet.net (msr18.hinet.net [168.95.4.118]) by olra.theworths.org (Postfix) with ESMTP id 9574D431FAE for ; Sat, 21 Nov 2009 22:55:06 -0800 (PST) Received: from anar.kanru.info (220-132-104-233.HINET-IP.hinet.net [220.132.104.233]) by msr18.hinet.net (8.9.3/8.9.3) with ESMTP id OAA07511 for ; Sun, 22 Nov 2009 14:44:59 +0800 (CST) Received: from kanru (uid 1000) (envelope-from kanru@anar.kanru.info) id 16b by anar.kanru.info (DragonFly Mail Agent) Sun, 22 Nov 2009 14:41:50 +0800 From: Kan-Ru Chen To: notmuch@notmuchmail.org Date: Sun, 22 Nov 2009 14:40:59 +0800 Message-Id: <1258872059-7113-1-git-send-email-kanru@kanru.info> X-Mailer: git-send-email 1.6.5.3 Subject: [notmuch] [PATCH] Fix invalid face reference. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Nov 2009 06:55:09 -0000 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 --- notmuch.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/notmuch.el b/notmuch.el index 0144b61..a547415 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) -- 1.6.5.3