]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/mail/rmailmm.el (rmail-mime-set-bulk-data): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Wed, 21 Apr 2021 12:29:49 +0000 (15:29 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 21 Apr 2021 12:29:49 +0000 (15:29 +0300)
lisp/mail/rmailmm.el

index 1295a086f5248d119d8d3b2703780c7f1526dd24..99bff66657b5e9c293ed37e8400832eeb4adf7ef 100644 (file)
@@ -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)))))))