diff options
author | Austin Clements <amdragon@MIT.EDU> | 2013-10-22 20:21:58 -0400 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2013-10-25 21:30:49 -0300 |
commit | 14971fe57c00718241ed4f8c56cfa0e0188a0231 (patch) | |
tree | dfc90239a9bfc07dcf5a0404d9aeba258e0655a2 /contrib | |
parent | 22172daa1768fff08046b4ccb82ceb2f3a38ac30 (diff) |
pick: Fix incorrect use of `notmuch-pick-tag'
`notmuch-pick-tag' takes a list of tag changes, but
`notmuch-pick-archive-message' passes it a &rest argument. This
happens to work if `notmuch-archive-tags' contains a single tag (which
it usually does), but will break if it does not.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/notmuch-pick/notmuch-pick.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el index a492214d..179076d8 100644 --- a/contrib/notmuch-pick/notmuch-pick.el +++ b/contrib/notmuch-pick/notmuch-pick.el @@ -542,8 +542,7 @@ message will be \"unarchived\", i.e. the tag changes in `notmuch-archive-tags' will be reversed." (interactive "P") (when notmuch-archive-tags - (apply 'notmuch-pick-tag - (notmuch-tag-change-list notmuch-archive-tags unarchive)))) + (notmuch-pick-tag (notmuch-tag-change-list notmuch-archive-tags unarchive)))) (defun notmuch-pick-archive-message-then-next (&optional unarchive) "Archive the current message and move to next matching message." |