From 73921ac17e0de54709970550c99646691f2e14ea Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 20 Jan 2004 22:17:32 +0000 Subject: [PATCH] Jesper Harder (smtpmail-via-smtp): No need to add two bytes following previous change to smtpmail-send-data. --- lisp/mail/smtpmail.el | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 39886ad343d..bd9d5d7dd39 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el @@ -680,13 +680,8 @@ This is relative to `smtpmail-queue-dir'.") ;; size estimate: (+ (- (point-max) (point-min)) ;; Add one byte for each change-of-line - ;; because or CR-LF representation: - (count-lines (point-min) (point-max)) - ;; For some reason, an empty line is - ;; added to the message. Maybe this - ;; is a bug, but it can't hurt to add - ;; those two bytes anyway: - 2))) + ;; because of CR-LF representation: + (count-lines (point-min) (point-max))))) "")) (body-part (if (member '8bitmime supported-extensions) -- 2.39.2