summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2020-08-08 13:49:46 +0200
committerDavid Bremner <david@tethera.net>2020-08-09 20:57:51 -0300
commit82390b2807b14c1ab1eabc7ff0e68ccf1dda736e (patch)
tree3fb925544ae495c3a541b462db2bc36ef2f6963c
parenta2388bc56e55da5d5695816818274f8a84b0ed92 (diff)
emacs: Fix some function declarations
-rw-r--r--emacs/notmuch-tag.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el
index e71de041..1cef17e1 100644
--- a/emacs/notmuch-tag.el
+++ b/emacs/notmuch-tag.el
@@ -32,9 +32,10 @@
(require 'notmuch-lib)
-(declare-function notmuch-search-tag "notmuch" tag-changes)
-(declare-function notmuch-show-tag "notmuch-show" tag-changes)
-(declare-function notmuch-tree-tag "notmuch-tree" tag-changes)
+(declare-function notmuch-search-tag "notmuch"
+ (tag-changes &optional beg end only-matched))
+(declare-function notmuch-show-tag "notmuch-show" (tag-changes))
+(declare-function notmuch-tree-tag "notmuch-tree" (tag-changes))
(autoload 'notmuch-jump "notmuch-jump")