aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-message.el
diff options
context:
space:
mode:
authorGravatar David Bremner <bremner@debian.org>2013-06-02 09:16:10 -0300
committerGravatar David Bremner <bremner@debian.org>2013-06-02 11:37:22 -0300
commit9de0639126091fa0e48cfde69e3f6044d167a76a (patch)
treecda5dd0af093ebf029b281d1ed3db4154725868c /emacs/notmuch-message.el
parent5461c31d648f8ee6a8fb713c96ad10bc6d733c29 (diff)
emacs: replace (funcall 'foo ...) with (foo ...)
I can't see any benefit to the funcall, and it looks like the result of cut-and-paste from some code that actually used a variable for the function to call.
Diffstat (limited to 'emacs/notmuch-message.el')
-rw-r--r--emacs/notmuch-message.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch-message.el b/emacs/notmuch-message.el
index 4dc48832..914bdd18 100644
--- a/emacs/notmuch-message.el
+++ b/emacs/notmuch-message.el
@@ -40,7 +40,7 @@ the \"inbox\" and \"todo\" tags, you would set:
;; get the in-reply-to header and parse it for the message id.
(let ((rep (mail-header-parse-addresses (message-field-value "In-Reply-To"))))
(when (and notmuch-message-replied-tags rep)
- (funcall 'notmuch-tag (notmuch-id-to-query (car (car rep)))
+ (notmuch-tag (notmuch-id-to-query (car (car rep)))
(notmuch-tag-change-list notmuch-message-replied-tags)))))
(add-hook 'message-send-hook 'notmuch-message-mark-replied)