Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / dd / a5f86644803d1f8414c5e076c1296ccb19d986
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 D029441454A\r
6         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 11:28:33 -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 FYfNcX7aDmOW for <notmuch@notmuchmail.org>;\r
16         Sun,  8 Jan 2012 11:28:33 -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 79DF2414546\r
20         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 11:28:33 -0800 (PST)\r
21 Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
22         by fire-doxen-postvirus (Postfix) with ESMTP id 284DB2E50E56\r
23         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 11:28:33 -0800 (PST)\r
24 X-Spam-Scanned: at Caltech-IMSS on fire-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 fire-doxen-submit (Postfix) with ESMTP id 693702E50E4F\r
28         for <notmuch@notmuchmail.org>; Sun,  8 Jan 2012 11:28:31 -0800 (PST)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id E22D4A4A; Sun,  8 Jan 2012 11:28:30 -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 v3] emacs: use pop-at-end functionality in\r
34         archive/delete-message functions\r
35 Date: Sun,  8 Jan 2012 11:28:30 -0800\r
36 Message-Id: <1326050910-29274-1-git-send-email-jrollins@finestructure.net>\r
37 X-Mailer: git-send-email 1.7.7.3\r
38 In-Reply-To: <1326048964-13399-1-git-send-email-jrollins@finestructure.net>\r
39 References: <1326048964-13399-1-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 19:28:34 -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 sorry.  I originally missed the problem in patch 1/4, so I had\r
58 to modify this patch again to apply against the new version of the\r
59 previous.  So sorry for the noise, and thanks to amdragon for pointing\r
60 all of this out.\r
61 \r
62  emacs/notmuch-show.el |    4 ++--\r
63  1 files changed, 2 insertions(+), 2 deletions(-)\r
64 \r
65 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
66 index b9ec584..a706637 100644\r
67 --- a/emacs/notmuch-show.el\r
68 +++ b/emacs/notmuch-show.el\r
69 @@ -1454,7 +1454,7 @@ thread.\r
70  "\r
71      (interactive)\r
72      (notmuch-show-remove-tag "inbox")\r
73 -    (notmuch-show-next-open-message))\r
74 +    (notmuch-show-next-open-message t))\r
75  \r
76  (defun notmuch-show-archive-thread ()\r
77    "Archive each message in thread, then show next thread from search.\r
78 @@ -1485,7 +1485,7 @@ thread.\r
79  "\r
80      (interactive)\r
81      (notmuch-show-add-tag "deleted")\r
82 -    (notmuch-show-next-open-message))\r
83 +    (notmuch-show-next-open-message t))\r
84  \r
85  (defun notmuch-show-delete-thread ()\r
86    "Delete each message in thread, then show next thread from search.\r
87 -- \r
88 1.7.7.3\r
89 \r