# HG changeset patch # User Glenn Morris # Date 1074637052 0 # Node ID e33121530d13c893950621b9296638fe5756be2e # Parent 5252ab84cd018b04800c69979fade83302b6a92e Jesper Harder (smtpmail-via-smtp): No need to add two bytes following previous change to smtpmail-send-data. diff -r 5252ab84cd01 -r e33121530d13 lisp/mail/smtpmail.el --- a/lisp/mail/smtpmail.el Tue Jan 20 22:16:49 2004 +0000 +++ b/lisp/mail/smtpmail.el Tue Jan 20 22:17:32 2004 +0000 @@ -680,13 +680,8 @@ ;; 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)