contrib: pick: remove unnecessary funcall

Remove unnecessary funcall. This keeps the pick function inline with
the recently tweaked show function.
This commit is contained in:
Mark Walters 2013-06-03 23:05:45 +01:00 committed by David Bremner
parent 98834c22e0
commit 57a88397ca

View file

@ -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 ()