changeset 41492:974daf066117

(smtpmail-deduce-address-list): Don't use insert-string.
author Pavel Janík <Pavel@Janik.cz>
date Sun, 25 Nov 2001 15:08:08 +0000
parents 369ebb0fe30b
children d85992144288
files lisp/mail/smtpmail.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/smtpmail.el	Sun Nov 25 12:38:45 2001 +0000
+++ b/lisp/mail/smtpmail.el	Sun Nov 25 15:08:08 2001 +0000
@@ -873,9 +873,9 @@
 			  (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