Re: Bug in emacs showing long threads
[notmuch-archives.git] / 47 / 8c3a7f5a98f242dd0449f1a74c85b20026b4b8
1 Return-Path: <kanru@kanru.info>\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 B88AE431FC0\r
6         for <notmuch@notmuchmail.org>; Sun, 13 Dec 2009 21:42:28 -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 On8lASvhdrbn for <notmuch@notmuchmail.org>;\r
11         Sun, 13 Dec 2009 21:42:28 -0800 (PST)\r
12 X-Greylist: delayed 48891 seconds by postgrey-1.32 at olra;\r
13         Sun, 13 Dec 2009 21:42:28 PST\r
14 Received: from cp20.secserverpros.com (cp20.secserverpros.com\r
15  [67.220.217.187])      by olra.theworths.org (Postfix) with ESMTP id 0843C431FAE\r
16         for <notmuch@notmuchmail.org>; Sun, 13 Dec 2009 21:42:27 -0800 (PST)\r
17 Received: from 61-228-164-59.dynamic.hinet.net ([61.228.164.59]\r
18         helo=kanru.info)\r
19         by cp20.secserverpros.com with esmtps (TLSv1:AES256-SHA:256)\r
20         (Exim 4.69) (envelope-from <kanru@kanru.info>) id 1NK3hR-0004jV-Op\r
21         for notmuch@notmuchmail.org; Mon, 14 Dec 2009 05:42:26 +0000\r
22 Received: from kanru (uid 1000) (envelope-from kanru@kanru.info) id 2388\r
23         by kanru.info (DragonFly Mail Agent) Mon, 14 Dec 2009 13:41:52 +0800\r
24 From: Kan-Ru Chen <kanru@kanru.info>\r
25 To: notmuch@notmuchmail.org\r
26 Date: Mon, 14 Dec 2009 13:41:33 +0800\r
27 Message-Id: <1260769295-12924-3-git-send-email-kanru@kanru.info>\r
28 X-Mailer: git-send-email 1.6.5.5\r
29 In-Reply-To: <1260769295-12924-2-git-send-email-kanru@kanru.info>\r
30 References: <1260769295-12924-1-git-send-email-kanru@kanru.info>\r
31         <1260769295-12924-2-git-send-email-kanru@kanru.info>\r
32 X-ACL-Warn: {\r
33 X-AntiAbuse: This header was added to track abuse,\r
34         please include it with any abuse report\r
35 X-AntiAbuse: Primary Hostname - cp20.secserverpros.com\r
36 X-AntiAbuse: Original Domain - notmuchmail.org\r
37 X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]\r
38 X-AntiAbuse: Sender Address Domain - kanru.info\r
39 X-Source: \r
40 X-Source-Args: \r
41 X-Source-Dir: \r
42 Subject: [notmuch] [PATCH 2/4] emacs: Connect two hunk of citations if only\r
43         blank separated\r
44 X-BeenThere: notmuch@notmuchmail.org\r
45 X-Mailman-Version: 2.1.12\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: Mon, 14 Dec 2009 05:42:28 -0000\r
57 \r
58 Also eats extra blanks between citations and content, which may not be\r
59 desired behavior.\r
60 \r
61 Signed-off-by: Kan-Ru Chen <kanru@kanru.info>\r
62 ---\r
63  notmuch.el |    2 +-\r
64  1 files changed, 1 insertions(+), 1 deletions(-)\r
65 \r
66 diff --git a/notmuch.el b/notmuch.el\r
67 index 5823094..1722474 100644\r
68 --- a/notmuch.el\r
69 +++ b/notmuch.el\r
70 @@ -603,7 +603,7 @@ which this thread was originally shown."\r
71        (move-to-column depth)\r
72        (if (looking-at citation)\r
73           (progn\r
74 -           (while (looking-at citation)\r
75 +           (while (looking-at (concat citation "\\|^$"))\r
76               (forward-line)\r
77               (move-to-column depth))\r
78             (end-of-line 0)\r
79 -- \r
80 1.6.5.5\r
81 \r