X-Git-Url: http://rtime.felk.cvut.cz/gitweb/notmuch.git/blobdiff_plain/edae844efaeda706568850003da116a805b352ee..f1c2dd223006336385407ff9199f3d4589fe6345:/emacs/notmuch-company.el diff --git a/emacs/notmuch-company.el b/emacs/notmuch-company.el index add3161b..dcb59cd6 100644 --- a/emacs/notmuch-company.el +++ b/emacs/notmuch-company.el @@ -1,4 +1,4 @@ -;; notmuch-company.el --- Mail address completion for notmuch via company-mode -*- lexical-binding: t -*- +;;; notmuch-company.el --- Mail address completion for notmuch via company-mode -*- lexical-binding: t -*- ;; Authors: Trevor Jim ;; Michal Sojka @@ -72,7 +72,7 @@ (lambda (callback) ;; First run quick asynchronous harvest based on what the user entered so far (notmuch-address-harvest - (format "to:%s*" arg) nil + arg nil (lambda (_proc _event) (funcall callback (notmuch-address-matching arg)) ;; Then start the (potentially long-running) full asynchronous harvest if necessary @@ -84,3 +84,5 @@ (provide 'notmuch-company) + +;;; notmuch-company.el ends here