From: Richard M. Stallman Date: Thu, 6 Jan 1994 11:42:55 +0000 (+0000) Subject: (rmail-convert-to-babyl-format): X-Git-Tag: emacs-19.34~10385 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a865e55bbe9c9f3806e427ba2d3dfe23e9450d2f;p=emacs.git (rmail-convert-to-babyl-format): Fix one-off error in handling content-length field. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index fcda6eb0ec5..d852b73586f 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -896,7 +896,7 @@ argument causes us to read a file name and use that file as the inbox." ;; skip to the end of the contents. (let* ((header-end (save-excursion (and (re-search-forward "\n\n" nil t) - (point)))) + (1- (point))))) (case-fold-search t) (size ;; Get the numeric value from the Content-Length field.