diff options
author | Glenn Morris <rgm@gnu.org> | 2014-11-04 21:08:12 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-11-04 21:08:12 -0800 |
commit | ddce73d32fa3e62e022842e3bbdc0aa83bb358cc (patch) | |
tree | 21dbcb8d40ff634b6f821de95af2b8e3deb0a8e3 /lisp/mail | |
parent | 6a278b64f7356613c4a7709ed699655fa7415260 (diff) | |
download | emacs-ddce73d32fa3e62e022842e3bbdc0aa83bb358cc.tar.gz |
Revert previous accidental commit
Diffstat (limited to 'lisp/mail')
-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 8c2f3c66757..49103e5714d 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) - "\n>*From " - "\nFrom "))) + "^>*From " + "^From "))) (while (re-search-forward fromline nil t) (beginning-of-line) (insert ?>) |