diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-25 15:11:22 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-25 15:11:22 +0000 |
commit | fefed09d4223b272d3aa061dbdf6d7a0b2bb6047 (patch) | |
tree | 64067ecec9730505a9c3eb323256ad69f3034c1d /lisp/mail | |
parent | 9c7fce05050dd86673f656ef177413fc7855a12b (diff) | |
download | emacs-fefed09d4223b272d3aa061dbdf6d7a0b2bb6047.tar.gz |
(smtpmail-deduce-address-list): Don't use insert-string.
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'.") (mail-strip-quoted-names (buffer-substring this-line this-line-end)))) ) (erase-buffer) - (insert-string " ") - (insert-string simple-address-list) - (insert-string "\n") + (insert " ") + (insert simple-address-list) + (insert "\n") (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank |