]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/notmuch-query.el
doc: include notmuch-emacs-mua in documentation ToC
[notmuch] / emacs / notmuch-query.el
index 51d427f230038caf8782be5afafca11ca072c644..8587d8818cf759f4f3129e48072a8b1c98ea90f1 100644 (file)
@@ -1,4 +1,4 @@
-;; notmuch-query.el --- provide an emacs api to query notmuch
+;;; notmuch-query.el --- provide an emacs api to query notmuch
 ;;
 ;; Copyright © David Bremner
 ;;
@@ -19,8 +19,9 @@
 ;;
 ;; Authors: David Bremner <david@tethera.net>
 
+;;; Code:
+
 (require 'notmuch-lib)
-(require 'json)
 
 (defun notmuch-query-get-threads (search-terms)
   "Return a list of threads of messages matching SEARCH-TERMS.
@@ -75,3 +76,5 @@ See the function notmuch-query-get-threads for more information."
    (notmuch-query-get-threads search-terms)))
 
 (provide 'notmuch-query)
+
+;;; notmuch-query.el ends here