diff --git a/mu4e/mu4e-message.el b/mu4e/mu4e-message.el index 0b40f1ce..2cbfd5ec 100644 --- a/mu4e/mu4e-message.el +++ b/mu4e/mu4e-message.el @@ -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'")))