diff options
author | Glenn Morris <rgm@gnu.org> | 2014-11-04 21:04:30 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-11-04 21:04:30 -0800 |
commit | 6a278b64f7356613c4a7709ed699655fa7415260 (patch) | |
tree | 089f1e051d97e213382ee15633b45e831c60b9f2 /lisp/mail/unrmail.el | |
parent | fdcbfeac69b3e9c7edb114d47beb7e9ac9d10df4 (diff) | |
download | emacs-6a278b64f7356613c4a7709ed699655fa7415260.tar.gz |
Merge from emacs-24; up to 117669
Diffstat (limited to 'lisp/mail/unrmail.el')
-rw-r--r-- | lisp/mail/unrmail.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index 49103e5714d..8c2f3c66757 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el @@ -241,8 +241,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use." ;; Convert From to >From, etc. (let ((case-fold-search nil) (fromline (if (eq 'mboxrd unrmail-mbox-format) - "^>*From " - "^From "))) + "\n>*From " + "\nFrom "))) (while (re-search-forward fromline nil t) (beginning-of-line) (insert ?>) |