From a865e55bbe9c9f3806e427ba2d3dfe23e9450d2f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 6 Jan 1994 11:42:55 +0000 Subject: [PATCH] (rmail-convert-to-babyl-format): Fix one-off error in handling content-length field. --- lisp/mail/rmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5