X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Fnotmuch-print.el;h=6dd9f775a9ddba858c9358dc569f70b462f073b1;hp=8c18f4bd63da4d0fa9a1d30c6272c8667f671bdb;hb=df3fab18fe70ea750f6f06da30291c67de7e74f2;hpb=ff53fb468e160c8c6910078cfa92dcb6b5caa728 diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el index 8c18f4bd..6dd9f775 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,10 +15,12 @@ ;; 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)) @@ -67,7 +69,7 @@ Optional OUTPUT allows passing a list of flags to muttprint." (defun notmuch-print-ps-print/evince (msg) "Preview a message buffer using ps-print and evince." - (let ((ps-file (make-temp-file "notmuch")) + (let ((ps-file (make-temp-file "notmuch" nil ".ps")) (subject (notmuch-prettify-subject (plist-get (notmuch-show-get-prop :headers msg) :Subject)))) (rename-buffer subject t) @@ -80,7 +82,7 @@ Optional OUTPUT allows passing a list of flags to muttprint." (defun notmuch-print-muttprint/evince (msg) "Preview a message buffer using muttprint and evince." - (let ((ps-file (make-temp-file "notmuch"))) + (let ((ps-file (make-temp-file "notmuch" nil ".ps"))) (notmuch-print-run-muttprint (list "--printer" (concat "TO_FILE:" ps-file))) (notmuch-print-run-evince ps-file))) @@ -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