Re: [PATCH 9/9] add has: query prefix to search for specific properties
[notmuch-archives.git] / 84 / c41be7158d41e92b5e741cac349865bc16e0c1
1 Return-Path: <pieter@praet.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 DF0B7431FD0\r
6         for <notmuch@notmuchmail.org>; Wed, 16 Mar 2011 00:09:58 -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: -0.7\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\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 A98e1WOXVp5u for <notmuch@notmuchmail.org>;\r
16         Wed, 16 Mar 2011 00:09:58 -0700 (PDT)\r
17 Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com\r
18  [74.125.82.45])        (using TLSv1 with cipher RC4-SHA (128/128 bits))        (No client\r
19  certificate requested) by olra.theworths.org (Postfix) with ESMTPS id\r
20  0861D431FB5    for <notmuch@notmuchmail.org>; Wed, 16 Mar 2011 00:09:57 -0700\r
21  (PDT)\r
22 Received: by wwb28 with SMTP id 28so1457250wwb.2\r
23         for <notmuch@notmuchmail.org>; Wed, 16 Mar 2011 00:09:55 -0700 (PDT)\r
24 Received: by 10.227.147.196 with SMTP id m4mr396659wbv.179.1300259395677;\r
25         Wed, 16 Mar 2011 00:09:55 -0700 (PDT)\r
26 Received: from localhost (181.66-240-81.adsl-dyn.isp.belgacom.be\r
27         [81.240.66.181])\r
28         by mx.google.com with ESMTPS id u9sm779293wbg.0.2011.03.16.00.09.53\r
29         (version=TLSv1/SSLv3 cipher=OTHER);\r
30         Wed, 16 Mar 2011 00:09:54 -0700 (PDT)\r
31 From: Pieter Praet <pieter@praet.org>\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [PATCH] emacs: "message-cited-text-face" is obsolete since Emacs\r
34         22.1. Use "message-cited-text" instead.\r
35 User-Agent: Notmuch/0.5-49-g4aeb291 (http://notmuchmail.org) Emacs/23.1.50.1\r
36         (x86_64-pc-linux-gnu)\r
37 Date: Wed, 16 Mar 2011 08:09:52 +0100\r
38 Message-ID:\r
39  <874o73h77j.fsf@A7GMS.i-did-not-set--mail-host-address--so-tickle-me>\r
40 MIME-Version: 1.0\r
41 Content-Type: text/plain; charset=us-ascii\r
42 X-BeenThere: notmuch@notmuchmail.org\r
43 X-Mailman-Version: 2.1.13\r
44 Precedence: list\r
45 List-Id: "Use and development of the notmuch mail system."\r
46         <notmuch.notmuchmail.org>\r
47 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
49 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
50 List-Post: <mailto:notmuch@notmuchmail.org>\r
51 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
52 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
54 X-List-Received-Date: Wed, 16 Mar 2011 07:09:59 -0000\r
55 \r
56 \r
57 ---\r
58  emacs/notmuch-wash.el |    4 ++--\r
59  1 files changed, 2 insertions(+), 2 deletions(-)\r
60 \r
61 diff --git a/emacs/notmuch-wash.el b/emacs/notmuch-wash.el\r
62 index c4a7a41..0e64eb2 100644\r
63 --- a/emacs/notmuch-wash.el\r
64 +++ b/emacs/notmuch-wash.el\r
65 @@ -125,7 +125,7 @@ is what to put on the button."\r
66      (let* ((cite-start (match-beginning 0))\r
67            (cite-end (match-end 0))\r
68            (cite-lines (count-lines cite-start cite-end)))\r
69 -      (overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text-face)\r
70 +      (overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text)\r
71        (when (> cite-lines (+ notmuch-wash-citation-lines-prefix\r
72                              notmuch-wash-citation-lines-suffix\r
73                              1))\r
74 @@ -151,7 +151,7 @@ is what to put on the button."\r
75                   (sig-end-marker (make-marker)))\r
76               (set-marker sig-start-marker sig-start)\r
77               (set-marker sig-end-marker (point-max))\r
78 -             (overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text-face)\r
79 +             (overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text)\r
80               (notmuch-wash-region-to-button\r
81                sig-start-marker sig-end-marker\r
82                "signature" "\n"\r
83 ---\r