[PATCH 0/2] emacs: wash: word-wrap bugfix and tweak
[notmuch-archives.git] / 0f / a0513173ace32ce1e2a7310b91fb8faf7887f4
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 6EC25409C88\r
6         for <notmuch@notmuchmail.org>; Wed, 19 May 2010 01:54:48 -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, RCVD_IN_DNSWL_NONE=-0.0001] 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 VKPM6GJHlgfD for <notmuch@notmuchmail.org>;\r
16         Wed, 19 May 2010 01:54:36 -0700 (PDT)\r
17 Received: from mail-ew0-f213.google.com (mail-ew0-f213.google.com\r
18         [209.85.219.213])\r
19         by olra.theworths.org (Postfix) with ESMTP id B58A8417339\r
20         for <notmuch@notmuchmail.org>; Wed, 19 May 2010 01:53:46 -0700 (PDT)\r
21 Received: by mail-ew0-f213.google.com with SMTP id 5so1814149ewy.0\r
22         for <notmuch@notmuchmail.org>; Wed, 19 May 2010 01:53:46 -0700 (PDT)\r
23 Received: by 10.213.90.204 with SMTP id j12mr3613675ebm.27.1274259226405;\r
24         Wed, 19 May 2010 01:53:46 -0700 (PDT)\r
25 Received: from ut.hh.sledj.net (host83-217-165-81.dsl.vispa.com\r
26         [83.217.165.81])\r
27         by mx.google.com with ESMTPS id 13sm3493757ewy.5.2010.05.19.01.53.43\r
28         (version=TLSv1/SSLv3 cipher=RC4-MD5);\r
29         Wed, 19 May 2010 01:53:45 -0700 (PDT)\r
30 Received: by ut.hh.sledj.net (Postfix, from userid 1000)\r
31         id 820A959409A; Wed, 19 May 2010 08:03:45 +0100 (BST)\r
32 From: David Edmondson <dme@dme.org>\r
33 To: notmuch@notmuchmail.org\r
34 Subject: [PATCH 05/13] emacs: Set the `face' property rather than\r
35         `font-lock-face'.\r
36 Date: Wed, 19 May 2010 08:03:32 +0100\r
37 Message-Id: <1274252620-1249-6-git-send-email-dme@dme.org>\r
38 X-Mailer: git-send-email 1.7.1\r
39 In-Reply-To: <1274252620-1249-1-git-send-email-dme@dme.org>\r
40 References: <1274252620-1249-1-git-send-email-dme@dme.org>\r
41 X-BeenThere: notmuch@notmuchmail.org\r
42 X-Mailman-Version: 2.1.13\r
43 Precedence: list\r
44 List-Id: "Use and development of the notmuch mail system."\r
45         <notmuch.notmuchmail.org>\r
46 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
48 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
49 List-Post: <mailto:notmuch@notmuchmail.org>\r
50 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
51 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
53 X-List-Received-Date: Wed, 19 May 2010 08:54:48 -0000\r
54 \r
55 Avoid using face properties reserved for the font-lock package.\r
56 ---\r
57  emacs/notmuch.el |    2 +-\r
58  1 files changed, 1 insertions(+), 1 deletions(-)\r
59 \r
60 diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
61 index 60c0ee5..d36a92d 100644\r
62 --- a/emacs/notmuch.el\r
63 +++ b/emacs/notmuch.el\r
64 @@ -438,7 +438,7 @@ and will also appear in a buffer named \"*Notmuch errors*\"."\r
65        (let ((end (point)))\r
66         (delete-region beg end)\r
67         (insert (propertize (mapconcat  'identity tags " ")\r
68 -                           'font-lock-face 'notmuch-tag-face))))))\r
69 +                           'face 'notmuch-tag-face))))))\r
70  \r
71  (defun notmuch-search-get-tags ()\r
72    (save-excursion\r
73 -- \r
74 1.7.1\r
75 \r