From: Richard M. Stallman Date: Thu, 29 Jul 1993 03:43:38 +0000 (+0000) Subject: (rmail-convert-file): If file needs conversion, convert it all. X-Git-Tag: emacs-19.34~11519 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b03848314e13f5b12323a04923d9ea38f7e7ec4a;p=emacs.git (rmail-convert-file): If file needs conversion, convert it all. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index e70161d507f..e0d07beb917 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -282,7 +282,8 @@ that file, but does not copy any new mail into the file." (looking-at "\n*From "))) (let ((buffer-read-only nil)) (message "Converting to Babyl format...") - (narrow-to-region (point) (point-max)) +;;; If file needs conversion, convert it all. +;;; (narrow-to-region (point) (point-max)) (rmail-convert-to-babyl-format) (message "Converting to Babyl format...done")))))