From d76d88a7f0ecfa525eadc071438026c8fb0bad29 Mon Sep 17 00:00:00 2001 From: djcb Date: Mon, 6 Feb 2012 19:48:56 +0200 Subject: [PATCH] * mu4e.el: fix message washing regression --- emacs/mu4e.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/emacs/mu4e.el b/emacs/mu4e.el index a86bc731..07054ad3 100644 --- a/emacs/mu4e.el +++ b/emacs/mu4e.el @@ -569,8 +569,7 @@ uses the emacs built-in `html2text'. Alternatively, if ;; there's a normal sized text part txt)))) ;; and finally, remove some crap from the remaining string. - (replace-regexp-in-string "[ - ]" " " body nil nil nil))) + (replace-regexp-in-string "[  ]" " " body nil nil nil))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;