--- rfc2047.el~ 2002-09-14 03:37:43 +0000 +++ rfc2047.el 2002-12-04 02:39:53 +0000 @@ -520,6 +520,13 @@ (prog1 (match-string 0) (delete-region (match-beginning 0) (match-end 0))))) + ;; Remove newlines or excessive whitespace between decoded words. + (save-restriction + (narrow-to-region e (point)) + (goto-char e) + (while (re-search-forward "[\t\n\r ]+" nil t) + (replace-match " ")) + (goto-char (point-max))) (when (and (mm-multibyte-p) mail-parse-charset (not (eq mail-parse-charset 'us-ascii))