aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-01-19 12:54:56 -0800
committerGlenn Morris2013-01-19 12:54:56 -0800
commitc4d1e0c39c41ced76bf6e1d7abae4fc333ef2834 (patch)
tree6fcc553e6686db7a13ce84d38547335a83ff4479
parent795e7a5b3202851a89a042578ee572962a723d65 (diff)
downloademacs-c4d1e0c39c41ced76bf6e1d7abae4fc333ef2834.tar.gz
emacs-c4d1e0c39c41ced76bf6e1d7abae4fc333ef2834.zip
* lisp/mail/unrmail.el (unrmail): Do not mangle the mbox From line
fixes 2012-12-07 change. Fixes: debbugs:13499
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/unrmail.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 34dbe74f23f..bcab1e746a5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-01-19 Glenn Morris <rgm@gnu.org>
2
3 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
4 fixes 2012-12-07 change. (Bug#13499)
5
12013-01-19 Leo Liu <sdl.web@gmail.com> 62013-01-19 Leo Liu <sdl.web@gmail.com>
2 7
3 * dired.el (dired-get-marked-files): Prune erroneous values due to 8 * dired.el (dired-get-marked-files): Prune erroneous values due to
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."
241 (when keywords 241 (when keywords
242 (insert "X-RMAIL-KEYWORDS: " keywords "\n")) 242 (insert "X-RMAIL-KEYWORDS: " keywords "\n"))
243 (goto-char (point-min)) 243 (goto-char (point-min))
244 (forward-line 1) ; skip `From ' line
244 ;; Convert From to >From, etc. 245 ;; Convert From to >From, etc.
245 (let ((case-fold-search nil) 246 (let ((case-fold-search nil)
246 (fromline (if (eq 'mboxrd unrmail-mbox-format) 247 (fromline (if (eq 'mboxrd unrmail-mbox-format)