mu4e: moved 'tmp-file' deletion at the right place.

This commit is contained in:
Jean Schurger 2015-02-03 16:40:52 -05:00
parent d63f1b3114
commit f32092210e
1 changed files with 2 additions and 3 deletions

View File

@ -180,9 +180,8 @@ be changed by setting `mu4e-view-prefer-html'."
((stringp mu4e-html2text-command)
(let* ((tmp-file (make-temp-file "mu4e-html")))
(write-region (point-min) (point-max) tmp-file)
(mu4e-process-file-through-pipe tmp-file mu4e-html2text-command))
(delete-file tmp-file)
)
(mu4e-process-file-through-pipe tmp-file mu4e-html2text-command)
(delete-file tmp-file)))
((functionp mu4e-html2text-command)
(funcall mu4e-html2text-command))
(t (mu4e-error "Invalid `mu4e-html2text-command'")))