[PATCH 0/2] Rewrite text show format
[notmuch-archives.git] / a6 / b07e7dd4a0ddc6e7f5b4fe9ae916564d4ad818
1 Return-Path: <keithp@keithp.com>\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 8F790431FBC\r
6         for <notmuch@notmuchmail.org>; Wed, 18 Nov 2009 11:57:18 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id qIkAWy2ll9he for <notmuch@notmuchmail.org>;\r
11         Wed, 18 Nov 2009 11:57:17 -0800 (PST)\r
12 Received: from keithp.com (home.keithp.com [63.227.221.253])\r
13         by olra.theworths.org (Postfix) with ESMTP id BAB96431FAE\r
14         for <notmuch@notmuchmail.org>; Wed, 18 Nov 2009 11:57:17 -0800 (PST)\r
15 Received: from localhost (localhost [127.0.0.1])\r
16         by keithp.com (Postfix) with ESMTP id 2D5C9B9404C\r
17         for <notmuch@notmuchmail.org>; Wed, 18 Nov 2009 11:57:17 -0800 (PST)\r
18 X-Virus-Scanned: Debian amavisd-new at keithp.com\r
19 Received: from keithp.com ([127.0.0.1])\r
20         by localhost (keithp.com [127.0.0.1]) (amavisd-new, port 10024)\r
21         with LMTP id 9e8mFTHKGrJN; Wed, 18 Nov 2009 11:57:14 -0800 (PST)\r
22 Received: by keithp.com (Postfix, from userid 1033)\r
23         id F1E9EB9402F; Wed, 18 Nov 2009 11:57:13 -0800 (PST)\r
24 Received: from koto.keithp.com (localhost [127.0.0.1])\r
25         by keithp.com (Postfix) with ESMTP id EFA4BB88003;\r
26         Wed, 18 Nov 2009 11:57:13 -0800 (PST)\r
27 Received: by koto.keithp.com (Postfix, from userid 1488)\r
28         id 990871581A5; Wed, 18 Nov 2009 11:57:13 -0800 (PST)\r
29 From: Keith Packard <keithp@keithp.com>\r
30 To: notmuch@notmuchmail.org\r
31 Date: Wed, 18 Nov 2009 11:57:12 -0800\r
32 Message-Id: <1258574232-19966-1-git-send-email-keithp@keithp.com>\r
33 X-Mailer: git-send-email 1.6.5.2\r
34 Subject: [notmuch] [PATCH] Limit reverse searches to 100 threads.\r
35 X-BeenThere: notmuch@notmuchmail.org\r
36 X-Mailman-Version: 2.1.12\r
37 Precedence: list\r
38 List-Id: "Use and development of the notmuch mail system."\r
39         <notmuch.notmuchmail.org>\r
40 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
42 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
43 List-Post: <mailto:notmuch@notmuchmail.org>\r
44 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
45 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
47 X-List-Received-Date: Wed, 18 Nov 2009 19:57:18 -0000\r
48 \r
49 Yes, this is a lame default, but it serves my purposes.\r
50 \r
51 Signed-off-by: Keith Packard <keithp@keithp.com>\r
52 ---\r
53  notmuch.el |    2 +-\r
54  1 files changed, 1 insertions(+), 1 deletions(-)\r
55 \r
56 diff --git a/notmuch.el b/notmuch.el\r
57 index 4498200..91ed073 100644\r
58 --- a/notmuch.el\r
59 +++ b/notmuch.el\r
60 @@ -945,7 +945,7 @@ This function advances point to the next line when finished."\r
61        (save-excursion\r
62         (if oldest-first\r
63             (call-process "notmuch" nil t nil "search" query)\r
64 -         (call-process "notmuch" nil t nil "search" "--reverse" query))\r
65 +         (call-process "notmuch" nil t nil "search" "--max-threads=100" "--reverse" query))\r
66         (notmuch-search-markup-thread-ids)\r
67         ))))\r
68  \r
69 -- \r
70 1.6.5.2\r
71 \r