Re: A big thank you for the major tagging speedup
[notmuch-archives.git] / 20 / 838708c2240cb5d5468e6f029d9ca409ded0de
1 Return-Path: <dme@dme.org>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id D0A35431FC1\r
6         for <notmuch@notmuchmail.org>; Wed, 28 Apr 2010 23:52:09 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -1.9\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5\r
12         tests=[BAYES_00=-1.9] autolearn=ham\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id lAor59U0uCd0 for <notmuch@notmuchmail.org>;\r
16         Wed, 28 Apr 2010 23:52:08 -0700 (PDT)\r
17 Received: from mail-ww0-f53.google.com (mail-ww0-f53.google.com\r
18  [74.125.82.53])        by olra.theworths.org (Postfix) with ESMTP id 740EA4196F0       for\r
19  <notmuch@notmuchmail.org>; Wed, 28 Apr 2010 23:52:08 -0700 (PDT)\r
20 Received: by wwe15 with SMTP id 15so490890wwe.26\r
21         for <notmuch@notmuchmail.org>; Wed, 28 Apr 2010 23:52:07 -0700 (PDT)\r
22 Received: by 10.216.87.68 with SMTP id x46mr3364126wee.145.1272523927590;\r
23         Wed, 28 Apr 2010 23:52:07 -0700 (PDT)\r
24 Received: from ut.hh.sledj.net (gmp-ea-fw-1b.sun.com [192.18.8.1])\r
25         by mx.google.com with ESMTPS id r29sm4813337wbv.9.2010.04.28.23.52.06\r
26         (version=TLSv1/SSLv3 cipher=RC4-MD5);\r
27         Wed, 28 Apr 2010 23:52:06 -0700 (PDT)\r
28 Received: by ut.hh.sledj.net (Postfix, from userid 1000)\r
29         id 026AB594120; Thu, 29 Apr 2010 07:52:26 +0100 (BST)\r
30 From: David Edmondson <dme@dme.org>\r
31 To: notmuch@notmuchmail.org\r
32 Subject: [PATCH 2/2] emacs: Set the `face' property rather than\r
33         `font-lock-face'.\r
34 Date: Thu, 29 Apr 2010 07:52:23 +0100\r
35 Message-Id: <1272523943-25588-2-git-send-email-dme@dme.org>\r
36 X-Mailer: git-send-email 1.7.0\r
37 In-Reply-To: <1272477627-10562-1-git-send-email-dme@dme.org>\r
38 References: <1272477627-10562-1-git-send-email-dme@dme.org>\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.13\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43         <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Thu, 29 Apr 2010 06:52:10 -0000\r
52 \r
53 Avoid using face properties reserved for the font-lock package.\r
54 ---\r
55  emacs/notmuch.el |    2 +-\r
56  1 files changed, 1 insertions(+), 1 deletions(-)\r
57 \r
58 diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
59 index 60c0ee5..d36a92d 100644\r
60 --- a/emacs/notmuch.el\r
61 +++ b/emacs/notmuch.el\r
62 @@ -438,7 +438,7 @@ and will also appear in a buffer named \"*Notmuch errors*\"."\r
63        (let ((end (point)))\r
64         (delete-region beg end)\r
65         (insert (propertize (mapconcat  'identity tags " ")\r
66 -                           'font-lock-face 'notmuch-tag-face))))))\r
67 +                           'face 'notmuch-tag-face))))))\r
68  \r
69  (defun notmuch-search-get-tags ()\r
70    (save-excursion\r
71 -- \r
72 1.7.0\r
73 \r