From 0b40717e5b25946b555aba5aff377c6892fe91c6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Aug 1995 09:23:54 +0000 Subject: [PATCH] (rmail-convert-file): Look back for ^_ only at bol. --- lisp/mail/rmail.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index d631eba3ab..49128f85eb 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -338,8 +338,8 @@ If `rmail-display-summary' is non-nil, make a summary for this RMAIL file." (if (or convert (save-excursion (goto-char (point-max)) - (search-backward "\^_") - (forward-char 1) + (search-backward "\n\^_") + (forward-char 2) (looking-at "\n*From "))) (let ((buffer-read-only nil)) (message "Converting to Babyl format...") -- 2.39.2