mu4e: Fix warnings in contrib

This commit is contained in:
Christophe Troestler 2023-11-02 17:15:32 +01:00
parent ea7c05c183
commit d19c78f30d
1 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ the file."
(file-directory-p f))
nil
(expand-file-name f)))
(eshell-flatten-list (reverse args))))))
(mu4e--flatten-list (reverse args))))))
;; warn if user tries to attach without any files marked
(if (null files-to-attach)
(error "No files to attach")
@ -189,7 +189,7 @@ the file."
(goto-char (point-max)) ; attach at end of buffer
(while files-to-attach
(mml-attach-file (car files-to-attach)
(or (mm-default-file-encoding
(or (mu4e--mm-default-file-type
(car files-to-attach))
"application/octet-stream") nil)
(setq files-to-attach (cdr files-to-attach)))