aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib
diff options
context:
space:
mode:
authorGravatar Mark Walters <markwalters1009@gmail.com>2013-06-03 23:05:45 +0100
committerGravatar David Bremner <bremner@debian.org>2013-06-04 09:02:59 -0300
commit57a88397cac18c51e6cffe5b0b5041075d6231ad (patch)
tree921abebc626716b7f5c9fce63af8e9d91465539f /contrib
parent98834c22e0e7cf913ce7f7b1cee2a131261b0c6a (diff)
contrib: pick: remove unnecessary funcall
Remove unnecessary funcall. This keeps the pick function inline with the recently tweaked show function.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/notmuch-pick/notmuch-pick.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el
index 0e66efa5..10a2bf72 100644
--- a/contrib/notmuch-pick/notmuch-pick.el
+++ b/contrib/notmuch-pick/notmuch-pick.el
@@ -282,7 +282,7 @@ Does NOT change the database."
(defun notmuch-pick-tag (&optional tag-changes)
"Change tags for the current message"
(interactive)
- (setq tag-changes (funcall 'notmuch-tag (notmuch-pick-get-message-id) tag-changes))
+ (setq tag-changes (notmuch-tag (notmuch-pick-get-message-id) tag-changes))
(notmuch-pick-tag-update-display tag-changes))
(defun notmuch-pick-add-tag ()