; * lisp/mail/rmailmm.el (rmail-mime-set-bulk-data): Fix last change.
This commit is contained in:
parent
9e5290aecf
commit
e2464c534e
1 changed files with 1 additions and 1 deletions
|
@ -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)))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue