Re: [PATCH 0/4] Allow specifying alternate names for addresses in other_email
[notmuch-archives.git] / 72 / 2eaef6be90d37318369a593a39121e8b50dc63
1 Return-Path: <jrollins@finestructure.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 4329D414478\r
6         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 10:56:13 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -2.3\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id cvy43S4WKiDw for <notmuch@notmuchmail.org>;\r
16         Sun,  8 Jan 2012 10:56:12 -0800 (PST)\r
17 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
18         [131.215.239.19])\r
19         by olra.theworths.org (Postfix) with ESMTP id CB790414460\r
20         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 10:56:12 -0800 (PST)\r
21 Received: from earth-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
22         by earth-doxen-postvirus (Postfix) with ESMTP id 2FE2466E00DD\r
23         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 10:56:10 -0800 (PST)\r
24 X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new\r
25 Received: from finestructure.net (cpe-76-174-137-84.socal.res.rr.com\r
26         [76.174.137.84]) (Authenticated sender: jrollins)\r
27         by earth-doxen-submit (Postfix) with ESMTP id 5DB7666E018C\r
28         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 10:56:08 -0800 (PST)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id 5E986A4A; Sun,  8 Jan 2012 10:56:04 -0800 (PST)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Notmuch Mail <notmuch@notmuchmail.org>\r
33 Subject: [PATCH 4/4 v2] emacs: use pop-at-end functionality in\r
34         archive/delete-message functions\r
35 Date: Sun,  8 Jan 2012 10:56:04 -0800\r
36 Message-Id: <1326048964-13399-1-git-send-email-jrollins@finestructure.net>\r
37 X-Mailer: git-send-email 1.7.7.3\r
38 In-Reply-To: <1325986015-22510-5-git-send-email-jrollins@finestructure.net>\r
39 References: <1325986015-22510-5-git-send-email-jrollins@finestructure.net>\r
40 X-BeenThere: notmuch@notmuchmail.org\r
41 X-Mailman-Version: 2.1.13\r
42 Precedence: list\r
43 List-Id: "Use and development of the notmuch mail system."\r
44         <notmuch.notmuchmail.org>\r
45 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
47 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
48 List-Post: <mailto:notmuch@notmuchmail.org>\r
49 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
50 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
52 X-List-Received-Date: Sun, 08 Jan 2012 18:56:13 -0000\r
53 \r
54 This provides a smoother message processing flow by reducing the\r
55 number of key presses needed for these common operations.\r
56 ---\r
57 Sorry, there were some errant extra parens at the end of these\r
58 function definitions.\r
59 \r
60  emacs/notmuch-show.el |    4 ++--\r
61  1 files changed, 2 insertions(+), 2 deletions(-)\r
62 \r
63 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
64 index 4c2b507..a706637 100644\r
65 --- a/emacs/notmuch-show.el\r
66 +++ b/emacs/notmuch-show.el\r
67 @@ -1454,7 +1454,7 @@ thread.\r
68  "\r
69      (interactive)\r
70      (notmuch-show-remove-tag "inbox")\r
71 -    (notmuch-show-next-open-message)))\r
72 +    (notmuch-show-next-open-message t))\r
73  \r
74  (defun notmuch-show-archive-thread ()\r
75    "Archive each message in thread, then show next thread from search.\r
76 @@ -1485,7 +1485,7 @@ thread.\r
77  "\r
78      (interactive)\r
79      (notmuch-show-add-tag "deleted")\r
80 -    (notmuch-show-next-open-message)))\r
81 +    (notmuch-show-next-open-message t))\r
82  \r
83  (defun notmuch-show-delete-thread ()\r
84    "Delete each message in thread, then show next thread from search.\r
85 -- \r
86 1.7.7.3\r
87 \r