From e2464c534e7edd303031a0885be8cdf24a86ff70 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 21 Apr 2021 15:29:49 +0300 Subject: [PATCH] ; * lisp/mail/rmailmm.el (rmail-mime-set-bulk-data): Fix last change. --- lisp/mail/rmailmm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/rmailmm.el b/lisp/mail/rmailmm.el index 1295a086f52..99bff66657b 100644 --- a/lisp/mail/rmailmm.el +++ b/lisp/mail/rmailmm.el @@ -785,7 +785,7 @@ directly." (setq size (- (aref body 1) (aref body 0))) (cond ((string= encoding "base64") ;; https://en.wikipedia.org/wiki/Base64#MIME - (setq size (max (* (- size 814) 0.73) 100))) + (setq size (* size 0.73))) ((string= encoding "quoted-printable") ;; Assume most of the text is ASCII... (setq size (/ (* size 5) 7))))))) -- 2.39.5