mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Don't need text properties when sending a mail
* lisp/mail/smtpmail.el (smtpmail-send-data): Don't get text properties when sending mail data. (Bug#66880)
This commit is contained in:
parent
ce4a62eece
commit
c0601fb534
1 changed files with 2 additions and 2 deletions
|
|
@ -1057,8 +1057,8 @@ Returns an error if the server cannot be contacted."
|
|||
(while data-continue
|
||||
(with-current-buffer buffer
|
||||
(progress-reporter-update pr (point))
|
||||
(setq sending-data (buffer-substring (line-beginning-position)
|
||||
(line-end-position)))
|
||||
(setq sending-data (buffer-substring-no-properties (line-beginning-position)
|
||||
(line-end-position)))
|
||||
(end-of-line 2)
|
||||
(setq data-continue (not (eobp))))
|
||||
(smtpmail-send-data-1 process sending-data))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue