diff options
author | Glenn Morris <rgm@gnu.org> | 2013-01-19 12:54:56 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-01-19 12:54:56 -0800 |
commit | c4d1e0c39c41ced76bf6e1d7abae4fc333ef2834 (patch) | |
tree | 6fcc553e6686db7a13ce84d38547335a83ff4479 /lisp/mail/unrmail.el | |
parent | 795e7a5b3202851a89a042578ee572962a723d65 (diff) | |
download | emacs-c4d1e0c39c41ced76bf6e1d7abae4fc333ef2834.tar.gz |
* lisp/mail/unrmail.el (unrmail): Do not mangle the mbox From line
fixes 2012-12-07 change.
Fixes: debbugs:13499
Diffstat (limited to 'lisp/mail/unrmail.el')
-rw-r--r-- | lisp/mail/unrmail.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index 85e8bb4f863..406009af5e2 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el @@ -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) |