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 D0A35431FC1 for ; Wed, 28 Apr 2010 23:52:09 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -1.9 X-Spam-Level: X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9] autolearn=ham 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 lAor59U0uCd0 for ; Wed, 28 Apr 2010 23:52:08 -0700 (PDT) Received: from mail-ww0-f53.google.com (mail-ww0-f53.google.com [74.125.82.53]) by olra.theworths.org (Postfix) with ESMTP id 740EA4196F0 for ; Wed, 28 Apr 2010 23:52:08 -0700 (PDT) Received: by wwe15 with SMTP id 15so490890wwe.26 for ; Wed, 28 Apr 2010 23:52:07 -0700 (PDT) Received: by 10.216.87.68 with SMTP id x46mr3364126wee.145.1272523927590; Wed, 28 Apr 2010 23:52:07 -0700 (PDT) Received: from ut.hh.sledj.net (gmp-ea-fw-1b.sun.com [192.18.8.1]) by mx.google.com with ESMTPS id r29sm4813337wbv.9.2010.04.28.23.52.06 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 28 Apr 2010 23:52:06 -0700 (PDT) Received: by ut.hh.sledj.net (Postfix, from userid 1000) id 026AB594120; Thu, 29 Apr 2010 07:52:26 +0100 (BST) From: David Edmondson To: notmuch@notmuchmail.org Subject: [PATCH 2/2] emacs: Set the `face' property rather than `font-lock-face'. Date: Thu, 29 Apr 2010 07:52:23 +0100 Message-Id: <1272523943-25588-2-git-send-email-dme@dme.org> X-Mailer: git-send-email 1.7.0 In-Reply-To: <1272477627-10562-1-git-send-email-dme@dme.org> References: <1272477627-10562-1-git-send-email-dme@dme.org> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 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: Thu, 29 Apr 2010 06:52:10 -0000 Avoid using face properties reserved for the font-lock package. --- emacs/notmuch.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 60c0ee5..d36a92d 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -438,7 +438,7 @@ and will also appear in a buffer named \"*Notmuch errors*\"." (let ((end (point))) (delete-region beg end) (insert (propertize (mapconcat 'identity tags " ") - 'font-lock-face 'notmuch-tag-face)))))) + 'face 'notmuch-tag-face)))))) (defun notmuch-search-get-tags () (save-excursion -- 1.7.0