--- /dev/null
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by olra.theworths.org (Postfix) with ESMTP id 1E5D9431FD0\r
+ for <notmuch@notmuchmail.org>; Sat, 11 Jan 2014 12:41:39 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+ autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+ by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id UDGq8+++Tcqr for <notmuch@notmuchmail.org>;\r
+ Sat, 11 Jan 2014 12:41:31 -0800 (PST)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by olra.theworths.org (Postfix) with ESMTP id 9167E431FC3\r
+ for <notmuch@notmuchmail.org>; Sat, 11 Jan 2014 12:41:30 -0800 (PST)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+ by guru.guru-group.fi (Postfix) with ESMTP id D5C8B10005E;\r
+ Sat, 11 Jan 2014 22:41:25 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Mark Walters <markwalters1009@gmail.com>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH 1/2] emacs: tree remove comma separator tags\r
+In-Reply-To: <1387480344-14326-2-git-send-email-markwalters1009@gmail.com>\r
+References: <1387480344-14326-1-git-send-email-markwalters1009@gmail.com>\r
+ <1387480344-14326-2-git-send-email-markwalters1009@gmail.com>\r
+User-Agent: Notmuch/0.17+23~ga575e35 (http://notmuchmail.org) Emacs/24.3.1\r
+ (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+ $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+ !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Sat, 11 Jan 2014 22:41:25 +0200\r
+Message-ID: <m2r48e5k0a.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain; charset=utf-8\r
+Content-Transfer-Encoding: quoted-printable\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sat, 11 Jan 2014 20:41:39 -0000\r
+\r
+On Thu, Dec 19 2013, Mark Walters <markwalters1009@gmail.com> wrote:\r
+\r
+> Previously the tags on each line in tree view were separarted by ", "\r
+> not just " ". This is different from show and search views.\r
+>\r
+> This patch removes this comma. This is a large patch as essentially\r
+> every line of each of the expected outputs in the tree tests needs\r
+> updating.\r
+>\r
+> Apart from aesthetic reasons this simplifies the switch to\r
+> notmuch-tag-format-tags in the next patch.\r
+> ---\r
+\r
+This patch LGTM and is sensible change. Tests pass. Marking trivial and rea=\r
+dy.\r
+\r
+Tomi\r
+\r
+\r
+> emacs/notmuch-tree.el | 2 +-\r
+> .../notmuch-tree-single-thread | 8 +-\r
+> test/tree.expected-output/notmuch-tree-tag-inbox | 104 ++++++++++----=\r
+------\r
+> .../notmuch-tree-tag-inbox-tagged | 104 ++++++++++----=\r
+------\r
+> .../notmuch-tree-tag-inbox-thread-tagged | 104 ++++++++++----=\r
+------\r
+> 5 files changed, 161 insertions(+), 161 deletions(-)\r
+>\r
+> diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el\r
+> index 8d59e65..599f76e 100644\r
+> --- a/emacs/notmuch-tree.el\r
+> +++ b/emacs/notmuch-tree.el\r
+> @@ -691,7 +691,7 @@ unchanged ADDRESS if parsing fails."\r
+> 'notmuch-tree-match-tag-face\r
+> 'notmuch-tree-no-match-tag-face)))\r
+> (propertize (format format-string\r
+> - (mapconcat #'identity tags ", "))\r
+> + (mapconcat #'identity tags " "))\r
+> 'face face))))))\r
+>=20=20\r
+>=20=20\r
+> diff --git a/test/tree.expected-output/notmuch-tree-single-thread b/test/=\r
+tree.expected-output/notmuch-tree-single-thread\r
+> index c9e5ef8..2285d10 100644\r
+> --- a/test/tree.expected-output/notmuch-tree-single-thread\r
+> +++ b/test/tree.expected-output/notmuch-tree-single-thread\r
+> @@ -1,6 +1,6 @@\r
+> 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox, unrea=\r
+d)\r
+> - 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> End of search results.\r
+> diff --git a/test/tree.expected-output/notmuch-tree-tag-inbox b/test/tree=\r
+.expected-output/notmuch-tree-tag-inbox\r
+> index 484141e..f28d485 100644\r
+> --- a/test/tree.expected-output/notmuch-tree-tag-inbox\r
+> +++ b/test/tree.expected-output/notmuch-tree-tag-inbox\r
+> @@ -1,53 +1,53 @@\r
+> - 2010-12-29 Fran=C3=A7ois Boulogne =E2=94=80=E2=96=BA[aur-general]=\r
+ Guidelines: cp, mkdir vs install (inbox, unread)\r
+> - 2010-12-16 Olivier Berger =E2=94=80=E2=96=BAEssai accentu=C3=\r
+=A9 (inbox, unread)\r
+> - 2009-11-18 Chris Wilson =E2=94=80=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Makefile: evaluate pkg-config once (inbox, unread)\r
+> - 2009-11-18 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Error out if no query is supplied to search instead of going into an infini=\r
+te loop (attachment, inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Error out if no query is supplied to search instead of going into =\r
+an infinite loop (inbox, unread)\r
+> - 2009-11-17 Ingmar Vanhassel =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Typsos (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Adrian Perez de Cast =E2=94=AC=E2=96=BA[notmuch] Introduc=\r
+ing myself (inbox, signed, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Israel Herraiz =E2=94=AC=E2=96=BA[notmuch] New to t=\r
+he list (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] What a g=\r
+reat idea! (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Older versions of install do not support -C. (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Aron Griffis =E2=94=AC=E2=96=BA[notmuch] archive =\r
+ (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (in=\r
+box, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread)=\r
+ tags (inbox, unread)\r
+> - 2009-11-17 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] Working =\r
+with Maildir storage? (inbox, signed, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=AC=E2=96=BA ... =\r
+ (inbox, signed, unread)\r
+> - 2009-11-17 Lars Kellogg-Stedman =E2=94=82=E2=95=B0=E2=94=AC=E2=96=BA=\r
+ ... (inbox, signed, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=82 =E2=94=9C=E2=94=80=E2=96=\r
+=BA ... (inbox, unread)\r
+> - 2009-11-17 Keith Packard =E2=94=82 =E2=95=B0=E2=94=AC=E2=96=\r
+=BA ... (inbox, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=94=82 =E2=95=B0=E2=94=80=E2=96=\r
+=BA ... (inbox, signed, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox, unrea=\r
+d)\r
+> - 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Create a default notmuch-show-hook that highlights URLs and uses word-wrap =\r
+(inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Create a default notmuch-show-hook that highlights URLs and uses w=\r
+ord-wrap (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=94=80=E2=96=BA[notmuch] request =\r
+for pull (inbox, unread)\r
+> - 2009-11-18 Jjgod Jiang =E2=94=AC=E2=96=BA[notmuch] Mac OS X=\r
+/Darwin compatibility issues (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Jjgod Jiang =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Rolland Santimano =E2=94=80=E2=96=BA[notmuch] Link to =\r
+mailing list archives ? (inbox, unread)\r
+> - 2009-11-18 Jan Janak =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+notmuch new: Support for conversion of spool subdirectories into tags (inbo=\r
+x, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+count_files: sort directory in inode order before statting (inbox, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH 2=\r
+/2] Read mail directory in inode number order (inbox, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Fix linking with gcc to use g++ to link in C++ libs. (inbox, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] "notmuch=\r
+ help" outputs to stderr? (attachment, inbox, signed, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (attachment, inbox, signed, unrea=\r
+d)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Handle rename of message file (inbox, unread)\r
+> - 2009-11-17 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] prelimin=\r
+ary FreeBSD support (attachment, inbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> + 2010-12-29 Fran=C3=A7ois Boulogne =E2=94=80=E2=96=BA[aur-general]=\r
+ Guidelines: cp, mkdir vs install (inbox unread)\r
+> + 2010-12-16 Olivier Berger =E2=94=80=E2=96=BAEssai accentu=C3=\r
+=A9 (inbox unread)\r
+> + 2009-11-18 Chris Wilson =E2=94=80=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Makefile: evaluate pkg-config once (inbox unread)\r
+> + 2009-11-18 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Error out if no query is supplied to search instead of going into an infini=\r
+te loop (attachment inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Error out if no query is supplied to search instead of going into =\r
+an infinite loop (inbox unread)\r
+> + 2009-11-17 Ingmar Vanhassel =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Typsos (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Adrian Perez de Cast =E2=94=AC=E2=96=BA[notmuch] Introduc=\r
+ing myself (inbox signed unread)\r
+> + 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Israel Herraiz =E2=94=AC=E2=96=BA[notmuch] New to t=\r
+he list (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] What a g=\r
+reat idea! (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Older versions of install do not support -C. (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Aron Griffis =E2=94=AC=E2=96=BA[notmuch] archive =\r
+ (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (in=\r
+box unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread)=\r
+ tags (inbox unread)\r
+> + 2009-11-17 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] Working =\r
+with Maildir storage? (inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=AC=E2=96=BA ... =\r
+ (inbox signed unread)\r
+> + 2009-11-17 Lars Kellogg-Stedman =E2=94=82=E2=95=B0=E2=94=AC=E2=96=BA=\r
+ ... (inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=82 =E2=94=9C=E2=94=80=E2=96=\r
+=BA ... (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=94=82 =E2=95=B0=E2=94=AC=E2=96=\r
+=BA ... (inbox unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=94=82 =E2=95=B0=E2=94=80=E2=96=\r
+=BA ... (inbox signed unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Create a default notmuch-show-hook that highlights URLs and uses word-wrap =\r
+(inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Create a default notmuch-show-hook that highlights URLs and uses w=\r
+ord-wrap (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=94=80=E2=96=BA[notmuch] request =\r
+for pull (inbox unread)\r
+> + 2009-11-18 Jjgod Jiang =E2=94=AC=E2=96=BA[notmuch] Mac OS X=\r
+/Darwin compatibility issues (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Jjgod Jiang =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Rolland Santimano =E2=94=80=E2=96=BA[notmuch] Link to =\r
+mailing list archives ? (inbox unread)\r
+> + 2009-11-18 Jan Janak =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+notmuch new: Support for conversion of spool subdirectories into tags (inbo=\r
+x unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+count_files: sort directory in inode order before statting (inbox unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH 2=\r
+/2] Read mail directory in inode number order (inbox unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Fix linking with gcc to use g++ to link in C++ libs. (inbox unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] "notmuch=\r
+ help" outputs to stderr? (attachment inbox signed unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (attachment inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Handle rename of message file (inbox unread)\r
+> + 2009-11-17 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] prelimin=\r
+ary FreeBSD support (attachment inbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> End of search results.\r
+> diff --git a/test/tree.expected-output/notmuch-tree-tag-inbox-tagged b/te=\r
+st/tree.expected-output/notmuch-tree-tag-inbox-tagged\r
+> index 1f75a34..428c0ae 100644\r
+> --- a/test/tree.expected-output/notmuch-tree-tag-inbox-tagged\r
+> +++ b/test/tree.expected-output/notmuch-tree-tag-inbox-tagged\r
+> @@ -1,53 +1,53 @@\r
+> - 2010-12-29 Fran=C3=A7ois Boulogne =E2=94=80=E2=96=BA[aur-general]=\r
+ Guidelines: cp, mkdir vs install (inbox, unread)\r
+> - 2010-12-16 Olivier Berger =E2=94=80=E2=96=BAEssai accentu=C3=\r
+=A9 (inbox, test_tag, unread)\r
+> - 2009-11-18 Chris Wilson =E2=94=80=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Makefile: evaluate pkg-config once (inbox, unread)\r
+> - 2009-11-18 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Error out if no query is supplied to search instead of going into an infini=\r
+te loop (attachment, inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Error out if no query is supplied to search instead of going into =\r
+an infinite loop (inbox, unread)\r
+> - 2009-11-17 Ingmar Vanhassel =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Typsos (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Adrian Perez de Cast =E2=94=AC=E2=96=BA[notmuch] Introduc=\r
+ing myself (inbox, signed, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Israel Herraiz =E2=94=AC=E2=96=BA[notmuch] New to t=\r
+he list (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] What a g=\r
+reat idea! (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Older versions of install do not support -C. (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Aron Griffis =E2=94=AC=E2=96=BA[notmuch] archive =\r
+ (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (in=\r
+box, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread)=\r
+ tags (inbox, unread)\r
+> - 2009-11-17 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] Working =\r
+with Maildir storage? (inbox, signed, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=AC=E2=96=BA ... =\r
+ (inbox, signed, unread)\r
+> - 2009-11-17 Lars Kellogg-Stedman =E2=94=82=E2=95=B0=E2=94=AC=E2=96=BA=\r
+ ... (inbox, signed, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=82 =E2=94=9C=E2=94=80=E2=96=\r
+=BA ... (inbox, unread)\r
+> - 2009-11-17 Keith Packard =E2=94=82 =E2=95=B0=E2=94=AC=E2=96=\r
+=BA ... (inbox, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=94=82 =E2=95=B0=E2=94=80=E2=96=\r
+=BA ... (inbox, signed, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox, unrea=\r
+d)\r
+> - 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Create a default notmuch-show-hook that highlights URLs and uses word-wrap =\r
+(inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Create a default notmuch-show-hook that highlights URLs and uses w=\r
+ord-wrap (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=94=80=E2=96=BA[notmuch] request =\r
+for pull (inbox, unread)\r
+> - 2009-11-18 Jjgod Jiang =E2=94=AC=E2=96=BA[notmuch] Mac OS X=\r
+/Darwin compatibility issues (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Jjgod Jiang =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Rolland Santimano =E2=94=80=E2=96=BA[notmuch] Link to =\r
+mailing list archives ? (inbox, unread)\r
+> - 2009-11-18 Jan Janak =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+notmuch new: Support for conversion of spool subdirectories into tags (inbo=\r
+x, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+count_files: sort directory in inode order before statting (inbox, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH 2=\r
+/2] Read mail directory in inode number order (inbox, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Fix linking with gcc to use g++ to link in C++ libs. (inbox, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] "notmuch=\r
+ help" outputs to stderr? (attachment, inbox, signed, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (attachment, inbox, signed, unrea=\r
+d)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Handle rename of message file (inbox, unread)\r
+> - 2009-11-17 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] prelimin=\r
+ary FreeBSD support (attachment, inbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> + 2010-12-29 Fran=C3=A7ois Boulogne =E2=94=80=E2=96=BA[aur-general]=\r
+ Guidelines: cp, mkdir vs install (inbox unread)\r
+> + 2010-12-16 Olivier Berger =E2=94=80=E2=96=BAEssai accentu=C3=\r
+=A9 (inbox test_tag unread)\r
+> + 2009-11-18 Chris Wilson =E2=94=80=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Makefile: evaluate pkg-config once (inbox unread)\r
+> + 2009-11-18 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Error out if no query is supplied to search instead of going into an infini=\r
+te loop (attachment inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Error out if no query is supplied to search instead of going into =\r
+an infinite loop (inbox unread)\r
+> + 2009-11-17 Ingmar Vanhassel =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Typsos (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Adrian Perez de Cast =E2=94=AC=E2=96=BA[notmuch] Introduc=\r
+ing myself (inbox signed unread)\r
+> + 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Israel Herraiz =E2=94=AC=E2=96=BA[notmuch] New to t=\r
+he list (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] What a g=\r
+reat idea! (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Older versions of install do not support -C. (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Aron Griffis =E2=94=AC=E2=96=BA[notmuch] archive =\r
+ (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (in=\r
+box unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread)=\r
+ tags (inbox unread)\r
+> + 2009-11-17 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] Working =\r
+with Maildir storage? (inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=AC=E2=96=BA ... =\r
+ (inbox signed unread)\r
+> + 2009-11-17 Lars Kellogg-Stedman =E2=94=82=E2=95=B0=E2=94=AC=E2=96=BA=\r
+ ... (inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=82 =E2=94=9C=E2=94=80=E2=96=\r
+=BA ... (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=94=82 =E2=95=B0=E2=94=AC=E2=96=\r
+=BA ... (inbox unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=94=82 =E2=95=B0=E2=94=80=E2=96=\r
+=BA ... (inbox signed unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Create a default notmuch-show-hook that highlights URLs and uses word-wrap =\r
+(inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Create a default notmuch-show-hook that highlights URLs and uses w=\r
+ord-wrap (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=94=80=E2=96=BA[notmuch] request =\r
+for pull (inbox unread)\r
+> + 2009-11-18 Jjgod Jiang =E2=94=AC=E2=96=BA[notmuch] Mac OS X=\r
+/Darwin compatibility issues (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Jjgod Jiang =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Rolland Santimano =E2=94=80=E2=96=BA[notmuch] Link to =\r
+mailing list archives ? (inbox unread)\r
+> + 2009-11-18 Jan Janak =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+notmuch new: Support for conversion of spool subdirectories into tags (inbo=\r
+x unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+count_files: sort directory in inode order before statting (inbox unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH 2=\r
+/2] Read mail directory in inode number order (inbox unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Fix linking with gcc to use g++ to link in C++ libs. (inbox unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] "notmuch=\r
+ help" outputs to stderr? (attachment inbox signed unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (attachment inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Handle rename of message file (inbox unread)\r
+> + 2009-11-17 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] prelimin=\r
+ary FreeBSD support (attachment inbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> End of search results.\r
+> diff --git a/test/tree.expected-output/notmuch-tree-tag-inbox-thread-tagg=\r
+ed b/test/tree.expected-output/notmuch-tree-tag-inbox-thread-tagged\r
+> index a7aba6e..828c525 100644\r
+> --- a/test/tree.expected-output/notmuch-tree-tag-inbox-thread-tagged\r
+> +++ b/test/tree.expected-output/notmuch-tree-tag-inbox-thread-tagged\r
+> @@ -1,53 +1,53 @@\r
+> - 2010-12-29 Fran=C3=A7ois Boulogne =E2=94=80=E2=96=BA[aur-general]=\r
+ Guidelines: cp, mkdir vs install (inbox, unread)\r
+> - 2010-12-16 Olivier Berger =E2=94=80=E2=96=BAEssai accentu=C3=\r
+=A9 (inbox, unread)\r
+> - 2009-11-18 Chris Wilson =E2=94=80=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Makefile: evaluate pkg-config once (inbox, unread)\r
+> - 2009-11-18 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Error out if no query is supplied to search instead of going into an infini=\r
+te loop (attachment, inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Error out if no query is supplied to search instead of going into =\r
+an infinite loop (inbox, unread)\r
+> - 2009-11-17 Ingmar Vanhassel =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Typsos (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Adrian Perez de Cast =E2=94=AC=E2=96=BA[notmuch] Introduc=\r
+ing myself (inbox, signed, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Israel Herraiz =E2=94=AC=E2=96=BA[notmuch] New to t=\r
+he list (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] What a g=\r
+reat idea! (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Older versions of install do not support -C. (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Aron Griffis =E2=94=AC=E2=96=BA[notmuch] archive =\r
+ (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-17 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (in=\r
+box, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread)=\r
+ tags (inbox, unread)\r
+> - 2009-11-17 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] Working =\r
+with Maildir storage? (inbox, signed, test_thread_tag, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=AC=E2=96=BA ... =\r
+ (inbox, signed, test_thread_tag, =\r
+unread)\r
+> - 2009-11-17 Lars Kellogg-Stedman =E2=94=82=E2=95=B0=E2=94=AC=E2=96=BA=\r
+ ... (inbox, signed, test_thre=\r
+ad_tag, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=82 =E2=94=9C=E2=94=80=E2=96=\r
+=BA ... (inbox, test_thread_tag=\r
+, unread)\r
+> - 2009-11-17 Keith Packard =E2=94=82 =E2=95=B0=E2=94=AC=E2=96=\r
+=BA ... (inbox, test_thread_tag=\r
+, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=94=82 =E2=95=B0=E2=94=80=E2=96=\r
+=BA ... (inbox, signed, test_thr=\r
+ead_tag, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, test_thread_tag, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox, unread)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox, unrea=\r
+d)\r
+> - 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Create a default notmuch-show-hook that highlights URLs and uses word-wrap =\r
+(inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Create a default notmuch-show-hook that highlights URLs and uses w=\r
+ord-wrap (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=94=80=E2=96=BA[notmuch] request =\r
+for pull (inbox, unread)\r
+> - 2009-11-18 Jjgod Jiang =E2=94=AC=E2=96=BA[notmuch] Mac OS X=\r
+/Darwin compatibility issues (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Jjgod Jiang =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> - 2009-11-18 Rolland Santimano =E2=94=80=E2=96=BA[notmuch] Link to =\r
+mailing list archives ? (inbox, unread)\r
+> - 2009-11-18 Jan Janak =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+notmuch new: Support for conversion of spool subdirectories into tags (inbo=\r
+x, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+count_files: sort directory in inode order before statting (inbox, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH 2=\r
+/2] Read mail directory in inode number order (inbox, unread)\r
+> - 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Fix linking with gcc to use g++ to link in C++ libs. (inbox, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] "notmuch=\r
+ help" outputs to stderr? (attachment, inbox, signed, unread)\r
+> - 2009-11-18 Lars Kellogg-Stedman =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (attachment, inbox, signed, unrea=\r
+d)\r
+> - 2009-11-17 Mikhail Gusarov =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Handle rename of message file (inbox, unread)\r
+> - 2009-11-17 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] prelimin=\r
+ary FreeBSD support (attachment, inbox, unread)\r
+> - 2009-11-17 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox, unread)\r
+> + 2010-12-29 Fran=C3=A7ois Boulogne =E2=94=80=E2=96=BA[aur-general]=\r
+ Guidelines: cp, mkdir vs install (inbox unread)\r
+> + 2010-12-16 Olivier Berger =E2=94=80=E2=96=BAEssai accentu=C3=\r
+=A9 (inbox unread)\r
+> + 2009-11-18 Chris Wilson =E2=94=80=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Makefile: evaluate pkg-config once (inbox unread)\r
+> + 2009-11-18 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Error out if no query is supplied to search instead of going into an infini=\r
+te loop (attachment inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Error out if no query is supplied to search instead of going into =\r
+an infinite loop (inbox unread)\r
+> + 2009-11-17 Ingmar Vanhassel =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Typsos (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Adrian Perez de Cast =E2=94=AC=E2=96=BA[notmuch] Introduc=\r
+ing myself (inbox signed unread)\r
+> + 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Israel Herraiz =E2=94=AC=E2=96=BA[notmuch] New to t=\r
+he list (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] What a g=\r
+reat idea! (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=9C=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Jan Janak =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Older versions of install do not support -C. (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Aron Griffis =E2=94=AC=E2=96=BA[notmuch] archive =\r
+ (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (in=\r
+box unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread)=\r
+ tags (inbox unread)\r
+> + 2009-11-17 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] Working =\r
+with Maildir storage? (inbox signed test_thread_tag unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=AC=E2=96=BA ... =\r
+ (inbox signed test_thread_tag unr=\r
+ead)\r
+> + 2009-11-17 Lars Kellogg-Stedman =E2=94=82=E2=95=B0=E2=94=AC=E2=96=BA=\r
+ ... (inbox signed test_thread=\r
+_tag unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=82 =E2=94=9C=E2=94=80=E2=96=\r
+=BA ... (inbox test_thread_tag =\r
+unread)\r
+> + 2009-11-17 Keith Packard =E2=94=82 =E2=95=B0=E2=94=AC=E2=96=\r
+=BA ... (inbox test_thread_tag =\r
+unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=94=82 =E2=95=B0=E2=94=80=E2=96=\r
+=BA ... (inbox signed test_threa=\r
+d_tag unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox test_thread_tag unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=AC=E2=96=BA[notmuch] [PATCH 1=\r
+/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=9C=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH 2/2] Include <stdint.h> to get uint32_t in C++ file with gcc 4.4 (i=\r
+nbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=AC=E2=96=BA[notmuch]=\r
+ [PATCH 1/2] Close message file after parsing message headers (inbox unread)\r
+> + 2009-11-17 Keith Packard =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Keith Packard =E2=94=AC=E2=96=BA[notmuch] [PATCH] =\r
+Create a default notmuch-show-hook that highlights URLs and uses word-wrap =\r
+(inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA[notmuch]=\r
+ [PATCH] Create a default notmuch-show-hook that highlights URLs and uses w=\r
+ord-wrap (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=94=80=E2=96=BA[notmuch] request =\r
+for pull (inbox unread)\r
+> + 2009-11-18 Jjgod Jiang =E2=94=AC=E2=96=BA[notmuch] Mac OS X=\r
+/Darwin compatibility issues (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Jjgod Jiang =E2=95=B0=E2=94=AC=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Alexander Botero-Low =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> + 2009-11-18 Rolland Santimano =E2=94=80=E2=96=BA[notmuch] Link to =\r
+mailing list archives ? (inbox unread)\r
+> + 2009-11-18 Jan Janak =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+notmuch new: Support for conversion of spool subdirectories into tags (inbo=\r
+x unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+count_files: sort directory in inode order before statting (inbox unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH 2=\r
+/2] Read mail directory in inode number order (inbox unread)\r
+> + 2009-11-18 Stewart Smith =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Fix linking with gcc to use g++ to link in C++ libs. (inbox unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=94=AC=E2=96=BA[notmuch] "notmuch=\r
+ help" outputs to stderr? (attachment inbox signed unread)\r
+> + 2009-11-18 Lars Kellogg-Stedman =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (attachment inbox signed unread)\r
+> + 2009-11-17 Mikhail Gusarov =E2=94=80=E2=96=BA[notmuch] [PATCH] =\r
+Handle rename of message file (inbox unread)\r
+> + 2009-11-17 Alex Botero-Lowry =E2=94=AC=E2=96=BA[notmuch] prelimin=\r
+ary FreeBSD support (attachment inbox unread)\r
+> + 2009-11-17 Carl Worth =E2=95=B0=E2=94=80=E2=96=BA ... =\r
+ (inbox unread)\r
+> End of search results.\r
+> --=20\r
+> 1.7.9.1\r
+>\r
+> _______________________________________________\r
+> notmuch mailing list\r
+> notmuch@notmuchmail.org\r
+> http://notmuchmail.org/mailman/listinfo/notmuch\r