# HG changeset patch # User Richard M. Stallman # Date 736910087 0 # Node ID 9de57e00caf7bb95593d5c1ac774dbbc0542dd5c # Parent 83fee0378e0ea15a551f143a28a00dd38453c4c4 (rmail-convert-to-babyl-format): Delete 1 char if we see a newline instead of what we expect. diff -r 83fee0378e0e -r 9de57e00caf7 lisp/mail/rmail.el --- a/lisp/mail/rmail.el Sun May 09 00:57:56 1993 +0000 +++ b/lisp/mail/rmail.el Sun May 09 01:14:47 1993 +0000 @@ -797,9 +797,11 @@ (insert ?\^_) (narrow-to-region (point) (point-max))) ;; - ;;This is a kludge, in case we're wrong about mmdf not - ;;allowing anything in between. If it loses, we'll have - ;;to look for something else + ;; This kludge is because some versions of sendmail.el + ;; insert an extra newline at the beginning that shouldn't + ;; be there. sendmail.el has been fixed, but old versions + ;; may still be in use. -- rms, 7 May 1993. + ((eolp) (delete-char 1)) (t (error "Cannot convert to babyl format"))))) count))