diff lisp/mail/rmail.el @ 4698:196fac1c1086

(rmail-convert-file): Narrow to exclude the Babyl header.
author Richard M. Stallman <rms@gnu.org>
date Sat, 11 Sep 1993 10:40:03 +0000
parents 047e8f8469d9
children 04714985ce20
line wrap: on
line diff
--- a/lisp/mail/rmail.el	Fri Sep 10 13:48:39 1993 +0000
+++ b/lisp/mail/rmail.el	Sat Sep 11 10:40:03 1993 +0000
@@ -286,9 +286,9 @@
 	  ;; If file needs conversion, convert it all,
 	  ;; except for the BABYL header.
 	  ;; (rmail-convert-to-babyl-format would delete the header.)
-;;;	  (narrow-to-region (point) (point-max))
 	  (goto-char (point-min))
 	  (search-forward "\n\^_" nil t)
+	  (narrow-to-region (point) (point-max))
 	  (rmail-convert-to-babyl-format)
 	  (message "Converting to Babyl format...done")))))