From: Mark Walters Date: Mon, 3 Jun 2013 22:05:45 +0000 (+0100) Subject: contrib: pick: remove unnecessary funcall X-Git-Tag: 0.16_rc1~65 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=57a88397cac18c51e6cffe5b0b5041075d6231ad contrib: pick: remove unnecessary funcall Remove unnecessary funcall. This keeps the pick function inline with the recently tweaked show function. --- 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 ()