diff options
| author | Boris Glavic <lordpretzel@gmail.com> | 2021-07-31 20:25:33 -0500 |
|---|---|---|
| committer | Boris Glavic <lordpretzel@gmail.com> | 2021-07-31 20:34:48 -0500 |
| commit | b4cf999802a0faec7c93eee0ed38b06f33b5715d (patch) | |
| tree | 668e8d6f98a8ae9ce12876b8ffdef1c20ccd76ef | |
| parent | 78ef8ddcbb94d05ac0344755fe177fb068334bec (diff) | |
replace carriage-return instead of line feed in mu4e-message-outlook-cleanup
| -rw-r--r-- | mu4e/mu4e-message.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mu4e/mu4e-message.el b/mu4e/mu4e-message.el index 863751c..8401480 100644 --- a/mu4e/mu4e-message.el +++ b/mu4e/mu4e-message.el @@ -245,8 +245,7 @@ replace with." (with-temp-buffer (insert body) (goto-char (point-min)) - (while (re-search-forward "[ - ]" nil t) + (while (re-search-forward "\015 ]" nil t) (replace-match (cond ((string= (match-string 0) "") "'") |
