diff options
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/smtpmail.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index a4eed65c54e..b696c327fd8 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -873,9 +873,9 @@ This is relative to `smtpmail-queue-dir'.") | |||
| 873 | (mail-strip-quoted-names (buffer-substring this-line this-line-end)))) | 873 | (mail-strip-quoted-names (buffer-substring this-line this-line-end)))) |
| 874 | ) | 874 | ) |
| 875 | (erase-buffer) | 875 | (erase-buffer) |
| 876 | (insert-string " ") | 876 | (insert " ") |
| 877 | (insert-string simple-address-list) | 877 | (insert simple-address-list) |
| 878 | (insert-string "\n") | 878 | (insert "\n") |
| 879 | (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank | 879 | (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank |
| 880 | (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank | 880 | (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank |
| 881 | (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank | 881 | (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank |