[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r111562: * lisp/mail/unrmail.el (unrm
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r111562: * lisp/mail/unrmail.el (unrmail): Do not mangle the mbox From line |
Date: |
Sat, 19 Jan 2013 12:54:56 -0800 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 111562
fixes bug: http://debbugs.gnu.org/13499
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-01-19 12:54:56 -0800
message:
* lisp/mail/unrmail.el (unrmail): Do not mangle the mbox From line
fixes 2012-12-07 change.
modified:
lisp/ChangeLog
lisp/mail/unrmail.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2013-01-19 20:38:13 +0000
+++ b/lisp/ChangeLog 2013-01-19 20:54:56 +0000
@@ -1,3 +1,8 @@
+2013-01-19 Glenn Morris <address@hidden>
+
+ * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
+ fixes 2012-12-07 change. (Bug#13499)
+
2013-01-19 Leo Liu <address@hidden>
* dired.el (dired-get-marked-files): Prune erroneous values due to
=== modified file 'lisp/mail/unrmail.el'
--- a/lisp/mail/unrmail.el 2013-01-02 16:13:04 +0000
+++ b/lisp/mail/unrmail.el 2013-01-19 20:54:56 +0000
@@ -241,6 +241,7 @@
(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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r111562: * lisp/mail/unrmail.el (unrmail): Do not mangle the mbox From line,
Glenn Morris <=