Re: [PATCH] cli: crypto: tell gmime to use gpg-agent
[notmuch-archives.git] / 4f / 0981b0cd95f12ea6274b4f9e22808ec786f6f6
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 267F8429E36\r
6         for <notmuch@notmuchmail.org>; Wed, 25 Jan 2012 07:45:35 -0800 (PST)\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 ZQA+mz-cPt4K for <notmuch@notmuchmail.org>;\r
16         Wed, 25 Jan 2012 07:45:34 -0800 (PST)\r
17 Received: from mail-wi0-f181.google.com (mail-wi0-f181.google.com\r
18         [209.85.212.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 62995429E39\r
21         for <notmuch@notmuchmail.org>; Wed, 25 Jan 2012 07:45:34 -0800 (PST)\r
22 Received: by wibhi8 with SMTP id hi8so2602182wib.26\r
23         for <notmuch@notmuchmail.org>; Wed, 25 Jan 2012 07:45:33 -0800 (PST)\r
24 MIME-Version: 1.0\r
25 Received: by 10.181.11.231 with SMTP id el7mr1784803wid.0.1327506333175;\r
26         Wed, 25 Jan 2012 07:45:33 -0800 (PST)\r
27 Received: from hotblack-desiato.hh.sledj.net\r
28         (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25])\r
29         by mx.google.com with ESMTPS id l12sm1306244wiw.0.2012.01.25.07.45.31\r
30         (version=TLSv1/SSLv3 cipher=OTHER);\r
31         Wed, 25 Jan 2012 07:45:31 -0800 (PST)\r
32 Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000)\r
33         id D8B7F9FBD5; Wed, 25 Jan 2012 15:45:29 +0000 (GMT)\r
34 From: David Edmondson <dme@dme.org>\r
35 To: notmuch@notmuchmail.org\r
36 Subject: [PATCH 1/4 v2] test: `visible-buffer-substring' should not return\r
37         text properties.\r
38 Date: Wed, 25 Jan 2012 15:45:25 +0000\r
39 Message-Id: <1327506328-22126-2-git-send-email-dme@dme.org>\r
40 X-Mailer: git-send-email 1.7.8.3\r
41 In-Reply-To: <1327506328-22126-1-git-send-email-dme@dme.org>\r
42 References: <1327503908-17226-1-git-send-email-dme@dme.org>\r
43         <1327506328-22126-1-git-send-email-dme@dme.org>\r
44 X-Gm-Message-State:\r
45  ALoCoQne80MNX224AfTt2Eoh8PceiUfXv+2w4drpYlu9wCK5fQrOIZPdeDt0DrE5TVACWJszYKeG\r
46 X-BeenThere: notmuch@notmuchmail.org\r
47 X-Mailman-Version: 2.1.13\r
48 Precedence: list\r
49 List-Id: "Use and development of the notmuch mail system."\r
50         <notmuch.notmuchmail.org>\r
51 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
53 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
54 List-Post: <mailto:notmuch@notmuchmail.org>\r
55 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
56 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
57         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
58 X-List-Received-Date: Wed, 25 Jan 2012 15:45:35 -0000\r
59 \r
60 When using `visible-buffer-substring' to examine a buffer, the text\r
61 properties are not useful, so don't include them.\r
62 ---\r
63  test/test-lib.el |    2 +-\r
64  1 files changed, 1 insertions(+), 1 deletions(-)\r
65 \r
66 diff --git a/test/test-lib.el b/test/test-lib.el\r
67 index bc75f06..36e793a 100644\r
68 --- a/test/test-lib.el\r
69 +++ b/test/test-lib.el\r
70 @@ -60,7 +60,7 @@ FILENAME is OUTPUT."\r
71      (while (< start end)\r
72        (let ((next-pos (next-char-property-change start end)))\r
73         (when (not (invisible-p start))\r
74 -         (setq str (concat str (buffer-substring start next-pos))))\r
75 +         (setq str (concat str (buffer-substring-no-properties start next-pos))))\r
76         (setq start next-pos)))\r
77      str))\r
78  \r
79 -- \r
80 1.7.8.3\r
81 \r