From: Ingo Lohmar <i.lohmar@gmail.com>
Date: Sun, 3 Jun 2012 18:23:57 +0000 (+0300)
Subject: emacs: Fix notmuch-message-mark-replied.
X-Git-Tag: 0.14~56
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=bcdfff4f3a7a373851f08b22b56c58a25370b1fe;p=notmuch

emacs: Fix notmuch-message-mark-replied.

notmuch-message-mark-replied used "apply" to change message tags
according to notmuch-message-replied-tags after sending a reply.  This
works if the latter is a single-element list.  But with the recently
changed format of tag changes, it breaks for multiple-element lists.
Use "funcall" to properly pass the list of tag changes as a single
argument.
---

diff --git a/emacs/notmuch-message.el b/emacs/notmuch-message.el
index 5964caa3..d3738bf4 100644
--- a/emacs/notmuch-message.el
+++ b/emacs/notmuch-message.el
@@ -45,7 +45,7 @@ the \"inbox\" and \"todo\", you would set
 				(concat "+" str)
 			      str))
 			  notmuch-message-replied-tags)))
-	(apply 'notmuch-tag (notmuch-id-to-query (car (car rep))) tags)))))
+	(funcall 'notmuch-tag (notmuch-id-to-query (car (car rep))) tags)))))
 
 (add-hook 'message-send-hook 'notmuch-message-mark-replied)