X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch.el;h=a8a4c8e56c2a16b9d9f2c303fa8831bc0232208d;hb=e22cf5f49c8c4e56def5b841a7661703acb68736;hp=060af8eb0a361a613b92cf354c37589f1e86115b;hpb=c689d1ff13ed48507230ca7035021ce42d3dcd64;p=notmuch diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 060af8eb..a8a4c8e5 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -1,4 +1,4 @@ -;; notmuch.el --- run notmuch within emacs +;;; notmuch.el --- run notmuch within emacs ;; ;; Copyright © Carl Worth ;; @@ -18,6 +18,9 @@ ;; along with Notmuch. If not, see . ;; ;; Authors: Carl Worth +;; Homepage: https://notmuchmail.org/ + +;;; Commentary: ;; This is an emacs-based interface to the notmuch mail system. ;; @@ -47,6 +50,8 @@ ;; kudos: Notmuch list (subscription is not ;; required, but is available from http://notmuchmail.org). +;;; Code: + (eval-when-compile (require 'cl)) (require 'mm-view) (require 'message) @@ -1064,3 +1069,5 @@ notmuch buffers exist, run `notmuch'." (let ((init-file (locate-file notmuch-init-file '("/") (get-load-suffixes)))) (if init-file (load init-file nil t t)))) + +;;; notmuch.el ends here