[PATCH 4/4 v3] emacs: use pop-at-end functionality in archive/delete-message functions

Subject: [PATCH 4/4 v3] emacs: use pop-at-end functionality in archive/delete-message functions

Date: Sun, 8 Jan 2012 11:28:30 -0800

To: Notmuch Mail

Cc:

From: Jameson Graef Rollins


This provides a smoother message processing flow by reducing the
number of key presses needed for these common operations.
---
Sorry sorry.  I originally missed the problem in patch 1/4, so I had
to modify this patch again to apply against the new version of the
previous.  So sorry for the noise, and thanks to amdragon for pointing
all of this out.

 emacs/notmuch-show.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index b9ec584..a706637 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -1454,7 +1454,7 @@ thread.
 "
     (interactive)
     (notmuch-show-remove-tag "inbox")
-    (notmuch-show-next-open-message))
+    (notmuch-show-next-open-message t))
 
 (defun notmuch-show-archive-thread ()
   "Archive each message in thread, then show next thread from search.
@@ -1485,7 +1485,7 @@ thread.
 "
     (interactive)
     (notmuch-show-add-tag "deleted")
-    (notmuch-show-next-open-message))
+    (notmuch-show-next-open-message t))
 
 (defun notmuch-show-delete-thread ()
   "Delete each message in thread, then show next thread from search.
-- 
1.7.7.3


Thread: