1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-18 10:16:51 +00:00

* lisp/mail/unrmail.el (unrmail): Do not mangle the mbox From line

fixes 2012-12-07 change.

Fixes: debbugs:13499
This commit is contained in:
Glenn Morris 2013-01-19 12:54:56 -08:00
parent 795e7a5b32
commit c4d1e0c39c
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2013-01-19 Glenn Morris <rgm@gnu.org>
* mail/unrmail.el (unrmail): Do not mangle the mbox From line;
fixes 2012-12-07 change. (Bug#13499)
2013-01-19 Leo Liu <sdl.web@gmail.com>
* dired.el (dired-get-marked-files): Prune erroneous values due to

View File

@ -241,6 +241,7 @@ The variable `unrmail-mbox-format' controls which mbox format to use."
(when keywords
(insert "X-RMAIL-KEYWORDS: " keywords "\n"))
(goto-char (point-min))
(forward-line 1) ; skip `From ' line
;; Convert From to >From, etc.
(let ((case-fold-search nil)
(fromline (if (eq 'mboxrd unrmail-mbox-format)