changeset 12839:40a12a81cc06

(rmail-convert-file): Look back for ^_ only at bol.
author Richard M. Stallman <rms@gnu.org>
date Sat, 12 Aug 1995 09:23:54 +0000
parents 7e28ff12e682
children 4e9a14304b8b
files lisp/mail/rmail.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rmail.el	Sat Aug 12 09:22:04 1995 +0000
+++ b/lisp/mail/rmail.el	Sat Aug 12 09:23:54 1995 +0000
@@ -338,8 +338,8 @@
     (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...")