X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-print.el;h=d9b3d449538f614911b047be194ed35c10daa2f4;hb=09f6533c3781b61ea634790d4bad38aadf89115c;hp=bca759fafaa373878971624a6b18e522ec368ae5;hpb=6a833a6e83865f6999707cc30768d07e1351c2cb;p=notmuch diff --git a/emacs/notmuch-print.el b/emacs/notmuch-print.el index bca759fa..d9b3d449 100644 --- a/emacs/notmuch-print.el +++ b/emacs/notmuch-print.el @@ -69,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) @@ -82,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)))