X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Fnotmuch-print.el;h=bca759fafaa373878971624a6b18e522ec368ae5;hp=6653d97782c4c6a046679f8da99ceec73611989b;hb=4f2a7993a54dacbe5699f3d6195e13de2c1af2b5;hpb=6bd3d8af5431542f352f084b6366e88b98b019a1 diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el index 6653d977..bca759fa 100644 --- a/emacs/notmuch-print.el +++ b/emacs/notmuch-print.el @@ -1,4 +1,4 @@ -;; notmuch-print.el --- printing messages from notmuch. +;;; notmuch-print.el --- printing messages from notmuch. ;; ;; Copyright © David Edmondson ;; @@ -15,17 +15,19 @@ ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License -;; along with Notmuch. If not, see . +;; along with Notmuch. If not, see . ;; ;; Authors: David Edmondson +;;; Code: + (require 'notmuch-lib) (declare-function notmuch-show-get-prop "notmuch-show" (prop &optional props)) (defcustom notmuch-print-mechanism 'notmuch-print-lpr "How should printing be done?" - :group 'notmuch + :group 'notmuch-show :type '(choice (function :tag "Use lpr" notmuch-print-lpr) (function :tag "Use ps-print" notmuch-print-ps-print) @@ -90,3 +92,5 @@ Optional OUTPUT allows passing a list of flags to muttprint." (funcall notmuch-print-mechanism msg)) (provide 'notmuch-print) + +;;; notmuch-print.el ends here