Merge pull request #1340 from alexmurray/master

mu4e: Non-breaking spaces should be replaced with a space and not removed
This commit is contained in:
Dirk-Jan C. Binnema
2018-11-19 21:02:06 +02:00
committed by GitHub

View File

@ -247,6 +247,7 @@ unless PREFER-HTML is non-nil."
<EFBFBD><EFBFBD>]" nil t) <EFBFBD><EFBFBD>]" nil t)
(replace-match (replace-match
(cond (cond
((string= (match-string 0) "<EFBFBD>") "'")
((string= (match-string 0) "<EFBFBD>") " ") ((string= (match-string 0) "<EFBFBD>") " ")
(t "")))) (t ""))))
(buffer-string))) (buffer-string)))