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)))))))