[notmuch] [PATCH -V2 2/2] notmuch.el: Add support for reply-to sender
[notmuch-archives.git] / e7 / 20cdad50b0654e7840e928c6b786edab9f68dd
1 Return-Path: <SRS0=wrT8=H7=kanru.info=kanru@srs.perfora.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 CFC21431FBC\r
6         for <notmuch@notmuchmail.org>; Sun, 13 Dec 2009 08:07:38 -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 g8+JCZ1jf0Hf for <notmuch@notmuchmail.org>;\r
11         Sun, 13 Dec 2009 08:07:38 -0800 (PST)\r
12 Received: from mout.perfora.net (mout.perfora.net [74.208.4.194])\r
13         by olra.theworths.org (Postfix) with ESMTP id 31A68431FAE\r
14         for <notmuch@notmuchmail.org>; Sun, 13 Dec 2009 08:07:38 -0800 (PST)\r
15 Received-SPF: pass (mxus1: domain of kanru.info designates 67.220.217.187 as\r
16         permitted sender) client-ip=67.220.217.187;\r
17         envelope-from=kanru@kanru.info; helo=cp20.secserverpros.com; \r
18 Received: from cp20.secserverpros.com (cp20.secserverpros.com\r
19  [67.220.217.187])      by mx.perfora.net (node=mxus1) with ESMTP (Nemesis)     id\r
20  0LaWV5-1NloU21hrr-00lil2 for notmuch@notmuchmail.org;  Sun, 13 Dec 2009\r
21  11:07:37 -0500\r
22 Received: from 61-228-164-59.dynamic.hinet.net ([61.228.164.59]\r
23         helo=kanru.info)\r
24         by cp20.secserverpros.com with esmtps (TLSv1:AES256-SHA:256)\r
25         (Exim 4.69) (envelope-from <kanru@kanru.info>) id 1NJqyt-0006Dt-1X\r
26         for notmuch@notmuchmail.org; Sun, 13 Dec 2009 16:07:35 +0000\r
27 Received: from kanru (uid 1000) (envelope-from kanru@kanru.info) id 2382\r
28         by kanru.info (DragonFly Mail Agent) Mon, 14 Dec 2009 00:07:01 +0800\r
29 From: Kan-Ru Chen <kanru@kanru.info>\r
30 To: notmuch@notmuchmail.org\r
31 Date: Mon, 14 Dec 2009 00:06:53 +0800\r
32 Message-Id: <1260720413-15092-1-git-send-email-kanru@kanru.info>\r
33 X-Mailer: git-send-email 1.6.5.5\r
34 X-ACL-Warn: {\r
35 X-AntiAbuse: This header was added to track abuse,\r
36         please include it with any abuse report\r
37 X-AntiAbuse: Primary Hostname - cp20.secserverpros.com\r
38 X-AntiAbuse: Original Domain - notmuchmail.org\r
39 X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]\r
40 X-AntiAbuse: Sender Address Domain - kanru.info\r
41 X-Source: \r
42 X-Source-Args: \r
43 X-Source-Dir: \r
44 Subject: [notmuch] [PATCH] emacs: Don't eat last newline character of\r
45         citations\r
46 X-BeenThere: notmuch@notmuchmail.org\r
47 X-Mailman-Version: 2.1.12\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: Sun, 13 Dec 2009 16:07:39 -0000\r
59 \r
60 In case of a citation following immediately new contents. When the citation\r
61 was collapsed:\r
62 \r
63     [1-line citation. Click/Enter to show.]\r
64 Lorem ipsum dolor sit amet, consectetur adipisicin\r
65 \r
66 When it was expanded:\r
67 \r
68     [10-line citation. Click/Enter to show.]\r
69     >\r
70     Lorem ipsum dolor sit amet, consectetur adipisicin\r
71 \r
72 The indentation was wrong.\r
73 \r
74 Signed-off-by: Kan-Ru Chen <kanru@kanru.info>\r
75 ---\r
76  notmuch.el |    1 +\r
77  1 files changed, 1 insertions(+), 0 deletions(-)\r
78 \r
79 diff --git a/notmuch.el b/notmuch.el\r
80 index 97914f2..aa6bc60 100644\r
81 --- a/notmuch.el\r
82 +++ b/notmuch.el\r
83 @@ -606,6 +606,7 @@ which this thread was originally shown."\r
84             (while (looking-at citation)\r
85               (forward-line)\r
86               (move-to-column depth))\r
87 +           (end-of-line 0)\r
88             (let ((overlay (make-overlay beg-sub (point)))\r
89                    (invis-spec (make-symbol "notmuch-citation-region")))\r
90                (add-to-invisibility-spec invis-spec)\r
91 -- \r
92 1.6.5.5\r
93 \r