X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch.el;h=b45b5ec71ce7f45e3ca4ad43c6c00771b3ef9099;hb=0cf457b73b4b666314d1a09ac3e31bd0fa2346a6;hp=060af8eb0a361a613b92cf354c37589f1e86115b;hpb=e366bb222722d6a635b736e875b760d82b46d1f5;p=notmuch diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 060af8eb..b45b5ec7 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 ;; @@ -19,6 +19,8 @@ ;; ;; Authors: Carl Worth +;;; Commentary: + ;; This is an emacs-based interface to the notmuch mail system. ;; ;; You will first need to have the notmuch program installed and have a @@ -47,6 +49,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 +1068,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