mu4e: Used temporary file instead of region to call the html renderer. (fix encoding issues)
This commit is contained in:
@ -178,8 +178,11 @@ be changed by setting `mu4e-view-prefer-html'."
|
|||||||
(insert html)
|
(insert html)
|
||||||
(cond
|
(cond
|
||||||
((stringp mu4e-html2text-command)
|
((stringp mu4e-html2text-command)
|
||||||
(shell-command-on-region (point-min) (point-max)
|
(let* ((tmp-file (make-temp-file "mu4e-html")))
|
||||||
mu4e-html2text-command nil t))
|
(write-region (point-min) (point-max) tmp-file)
|
||||||
|
(mu4e-process-file-through-pipe tmp-file mu4e-html2text-command))
|
||||||
|
(delete-file tmp-file)
|
||||||
|
)
|
||||||
((functionp mu4e-html2text-command)
|
((functionp mu4e-html2text-command)
|
||||||
(funcall mu4e-html2text-command))
|
(funcall mu4e-html2text-command))
|
||||||
(t (mu4e-error "Invalid `mu4e-html2text-command'")))
|
(t (mu4e-error "Invalid `mu4e-html2text-command'")))
|
||||||
|
|||||||
Reference in New Issue
Block a user