1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge from origin/emacs-26

25d9fe2 Work for empty MIME attachments (related to bug#34387)
This commit is contained in:
Glenn Morris 2019-02-15 13:25:31 -08:00
commit 92a2c737b9
3 changed files with 11 additions and 7 deletions

View file

@ -763,7 +763,7 @@ MIME-Version header before proceeding."
(mb enable-multibyte-characters)
beg)
(goto-char (point-min))
(search-forward-regexp "^\n" nil t)
(search-forward-regexp "^\n" nil 'move) ;; There might be no body.
(setq beg (point))
(with-current-buffer
(generate-new-buffer " *mm*")