(message-send-mail-with-smtp): Use (current-buffer) instead of
authormorioka <morioka>
Mon, 12 Jan 1998 18:56:08 +0000 (18:56 +0000)
committermorioka <morioka>
Mon, 12 Jan 1998 18:56:08 +0000 (18:56 +0000)
`tembuf'; rename `smtp-recipient-address-list' ->
`recipient-address-list'.

lisp/message.el

index ec85c9b..a40a817 100644 (file)
@@ -2202,14 +2202,15 @@ to find out how to use this."
          ;;
          ;;
          ;;
-         (let ((smtp-recipient-address-list
+         (let ((recipient-address-list
                 (or resend-to-addresses
                     (smtp-deduce-address-list (current-buffer)
                                               (point-min) delimline))))
            (smtp-do-bcc delimline)
            
-           (if smtp-recipient-address-list
-               (if (not (smtp-via-smtp smtp-recipient-address-list tembuf))
+           (if recipient-address-list
+               (if (not (smtp-via-smtp recipient-address-list
+                                       (current-buffer)))
                    (error "Sending failed; SMTP protocol error"))
              (error "Sending failed; no recipients"))
            ))