From 3f5486e584f1e6bc26aff8f165b80660fc26a9bc Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 14 Dec 2000 07:19:22 +0000 Subject: [PATCH] (smtpmail-send-it): Use `binary-write-region' instead of `write-region-as-binary'. --- smtpmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtpmail.el b/smtpmail.el index 460dbba..f3be888 100644 --- a/smtpmail.el +++ b/smtpmail.el @@ -245,7 +245,7 @@ This is relative to `smtpmail-queue-dir'.") (insert-buffer tembuf) (or (file-directory-p smtpmail-queue-dir) (make-directory smtpmail-queue-dir t)) - (write-region-as-binary (point-min) (point-max) file-data) + (binary-write-region (point-min) (point-max) file-data) (set-buffer buffer-elisp) (erase-buffer) (insert (concat -- 1.7.10.4