[PATCH 4/8] lib: extend private string map API with iterators
[notmuch-archives.git] / 20 / 7a819f91d6f6984d524d545a6409b59d80f296
1 Return-Path: <schnouki@schnouki.net>\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 DCA95429E25\r
6         for <notmuch@notmuchmail.org>; Sun, 30 Oct 2011 02:58:59 -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.1\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1]\r
13         autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id mZmJEnuCMWAA for <notmuch@notmuchmail.org>;\r
17         Sun, 30 Oct 2011 02:58:59 -0700 (PDT)\r
18 Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222])\r
19         by olra.theworths.org (Postfix) with ESMTP id 3FD6B431FB6\r
20         for <notmuch@notmuchmail.org>; Sun, 30 Oct 2011 02:58:59 -0700 (PDT)\r
21 Received: from odin.local (nancy.schnouki.net [78.238.0.45])\r
22         by ks3536.kimsufi.com (Postfix) with ESMTPSA id 0B83A6A0005;\r
23         Sun, 30 Oct 2011 10:58:57 +0100 (CET)\r
24 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net;\r
25         s=key-schnouki; t=1319968737;\r
26         bh=c43rpVMaBTfKx4TaovQUZJL4p42ohVNITe38I8tklhM=;\r
27         h=From:To:Subject:In-Reply-To:References:Date:Message-ID:\r
28         MIME-Version:Content-Type;\r
29         b=NazfkB7JYXaQHvhoEIQtHQDYGodWmJ+wIw8PE8c4qaq3w/l6MlZoCwArGI0wqL/qn\r
30         hHomLPUJD4z5veaFiirFm40m1Oj25W5bOwPikJfxoyf2ANsyF7417eUleCzPC8PIYT\r
31         f+ALai8raQvQN/xSpxMvtiX/Zgx7y1pwgl5k14/Y=\r
32 From: Thomas Jost <schnouki@schnouki.net>\r
33 To: Ivy Foster <joyfulgirl@archlinux.us>, notmuch@notmuchmail.org\r
34 Subject: Re: [Patch] Fix Emacs interface bug dealing with invisible text\r
35 In-Reply-To: <878vo47i82.fsf@nausicaa.localdomain>\r
36 References: <878vo47i82.fsf@nausicaa.localdomain>\r
37 User-Agent: Notmuch/0.9-39-ge84ff5d (http://notmuchmail.org) Emacs/24.0.90.1\r
38         (x86_64-unknown-linux-gnu)\r
39 Date: Sun, 30 Oct 2011 10:58:55 +0100\r
40 Message-ID: <877h3mhkbk.fsf@schnouki.net>\r
41 MIME-Version: 1.0\r
42 Content-Type: multipart/signed; boundary="=-=-=";\r
43         micalg=pgp-sha1; protocol="application/pgp-signature"\r
44 X-BeenThere: notmuch@notmuchmail.org\r
45 X-Mailman-Version: 2.1.13\r
46 Precedence: list\r
47 List-Id: "Use and development of the notmuch mail system."\r
48         <notmuch.notmuchmail.org>\r
49 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
51 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
52 List-Post: <mailto:notmuch@notmuchmail.org>\r
53 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
54 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
55         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
56 X-List-Received-Date: Sun, 30 Oct 2011 09:59:00 -0000\r
57 \r
58 --=-=-=\r
59 Content-Type: text/plain\r
60 Content-Transfer-Encoding: quoted-printable\r
61 \r
62 On Fri, 28 Oct 2011 20:29:49 -0400, Ivy Foster <joyfulgirl@archlinux.us> wr=\r
63 ote:\r
64 > Hey, folks,\r
65 >=20\r
66 > I'm new to notmuch, but like much of what I've tried so far.\r
67 > Thanks to all the contributors!\r
68 >=20\r
69 > The following patch fixes a bug I've noticed in Emacs's\r
70 > notmuch-show mode. Specifically, if you:\r
71 >=20\r
72 >     - have certain kinds of washing turned on (I've noticed\r
73 >       it with signature hiding), and\r
74 >=20\r
75 >     - are looking at the last or only message in a thread\r
76 >=20\r
77 > If you then hit Space (`notmuch-show-advance-or-archive') to\r
78 > move on, Emacs will fail to advance and/or archive the\r
79 > message, due to being kicked out of area of the invisible\r
80 > text before it can do what it's gotta do.\r
81 >=20\r
82 > The patch should fix the problem at the root, which seems to\r
83 > be with notmuch-show-move-past-invisible-[forward|backward].\r
84 \r
85 Hi Ivy,\r
86 \r
87 Thanks for this patch. I haven't tested it, but I will!\r
88 \r
89 However, I'm wondering something: wasn't this issue already addressed in\r
90 Dmitry's patch series that I rebased and reposted almost a month ago,\r
91 specifically patches 9/13 to 12/13?\r
92 \r
93 Patch 9/13 of the rebased series is\r
94 id:"1317660447-27520-10-git-send-email-schnouki@schnouki.net".\r
95 \r
96 Regards,\r
97 =2D-=20\r
98 Thomas/Schnouki\r
99 \r
100 --=-=-=\r
101 Content-Type: application/pgp-signature\r
102 \r
103 -----BEGIN PGP SIGNATURE-----\r
104 Version: GnuPG v1.4.11 (GNU/Linux)\r
105 \r
106 iQEcBAEBAgAGBQJOrR/gAAoJEMPdciX+bh5I/CUIAIrgEU5ThgK4riJNZTL//Qdp\r
107 wpj0pznn1efZEOBjmvIrUWFO5EK8W/hypSkixSw84EVygIhdwA0aNQmWnpQN9b2V\r
108 RdQYI582k/08DhIRrn1u7ZmNnPWOmempcydYVozcUF8Qm2YodtIIC1i6kU9un2Yz\r
109 hVebPep+BNp3yoePUOSCo5bpY1bpidpw3C2g6QQu/pkubToi2HJ6CoNfgmvOI00j\r
110 xAoH4e71jR3LAn9QTteBTKwDe5/Jw6T+k93yN1RH7UzwwJfbmm66z/JgqTVpovii\r
111 9CK8mbCQXQEMQLTCGZZTxT2NQmw0Ay+aLw6TzoRFZvF9BdXSfuy6OeElV0vYmQE=\r
112 =hpzI\r
113 -----END PGP SIGNATURE-----\r
114 --=-=-=--\r