aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-01-06 11:42:55 +0000
committerRichard M. Stallman <[email protected]>1994-01-06 11:42:55 +0000
commita865e55bbe9c9f3806e427ba2d3dfe23e9450d2f (patch)
tree278986131ca49bf0c4e9abd456974d9c00f74f0b /lisp/mail
parentec4c6f225a81e08f64ba3d16b2a0c10744bddc54 (diff)
(rmail-convert-to-babyl-format):
Fix one-off error in handling content-length field.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/rmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index fcda6eb0ec..d852b73586 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.