* lisp/mail/rmailmm.el (rmail-mime-insert-bulk): Remove apparently
superfluous call to string-as-unibyte -- the buffer should be
unibyte already at this point.
size (car bulk-data))
(if (stringp (aref body 0))
(setq data (aref body 0))
- (setq data (string-as-unibyte (buffer-string)))
+ (setq data (buffer-string))
+ (cl-assert (not (multibyte-string-p data)))
(aset body 0 data)
(rmail-mime-set-bulk-data entity)
(delete-region (point-min) (point-max)))