unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] [emacs] Add an argument to notmuch-mua-mail
@ 2011-12-16 10:30 Aaron Ecay
  2011-12-16 11:04 ` Dmitry Kurochkin
  2011-12-16 11:06 ` Tomi Ollila
  0 siblings, 2 replies; 14+ messages in thread
From: Aaron Ecay @ 2011-12-16 10:30 UTC (permalink / raw)
  To: notmuch

From the emacs changelog:

  ** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
  passes it to the mail user agent function.  This argument specifies an
  action for returning to the caller after finishing with the mail.
  This is currently used by Rmail to delete a mail window.

Under Emacs 24, notmuch breaks when this argument is passed to it by a
function in another part of Emacs.  One example of a functon that does
this is report-emacs-bug -- so notmuch users cannot file emacs bug
reports!

This patch also adds a &rest argument to the arg-list of this function,
to future-proof against such changes.  This is adapted from the approach
taken by message-mail, a similar function built into emacs.

This patch was originally submitted by richardmurri@gmail.com on Aug. 1:
id:"877h6x6oor.fsf@veracitynetworks.com"
Signed-off-by: Aaron Ecay <aaronecay@gmail.com>
---
 emacs/notmuch-mua.el |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el
index 8824b08..23552ad 100644
--- a/emacs/notmuch-mua.el
+++ b/emacs/notmuch-mua.el
@@ -125,7 +125,8 @@ list."
   (message-goto-to))
 
 (defun notmuch-mua-mail (&optional to subject other-headers continue
-				   switch-function yank-action send-actions)
+				   switch-function yank-action send-actions
+				   return-action &rest ignored)
   "Invoke the notmuch mail composition window."
   (interactive)
 
@@ -139,7 +140,8 @@ list."
 			(notmuch-user-name) " <" (notmuch-user-primary-email) ">")) other-headers))
 
   (message-mail to subject other-headers continue
-		switch-function yank-action send-actions)
+		switch-function yank-action send-actions
+		return-action)
   (message-sort-headers)
   (message-hide-headers)
   (set-buffer-modified-p nil)
-- 
1.7.8

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2011-12-18 12:22 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-16 10:30 [PATCH] [emacs] Add an argument to notmuch-mua-mail Aaron Ecay
2011-12-16 11:04 ` Dmitry Kurochkin
2011-12-16 11:06 ` Tomi Ollila
2011-12-16 11:16   ` Aaron Ecay
2011-12-16 11:40     ` Dmitry Kurochkin
2011-12-16 11:23   ` Dmitry Kurochkin
2011-12-17 10:23     ` Tomi Ollila
2011-12-17 10:41       ` Aaron Ecay
2011-12-17 13:48         ` Tomi Ollila
2011-12-17 14:40         ` Dmitry Kurochkin
2011-12-17 15:24           ` Aaron Ecay
2011-12-17 15:31             ` Dmitry Kurochkin
2011-12-17 19:51             ` Tomi Ollila
2011-12-18 12:22             ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).