X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-company.el;h=610e223deffc6eec337da69e28a3ecc5be8881bd;hb=2cf0ef3998a75a8e5bcd83f0a286d9660f1bdb0e;hp=add3161b790d6a490c7994ad0c1aad2632d803e8;hpb=4acbc1f7d36060ff1678e576495f8122f4d4cbb3;p=notmuch diff --git a/emacs/notmuch-company.el b/emacs/notmuch-company.el index add3161b..610e223d 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 @@ -16,7 +16,7 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . +;; along with this program. If not, see . ;;; Commentary: @@ -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