From 2cbe7d49dca691dc3283d7c411df30327b361781 Mon Sep 17 00:00:00 2001 From: ueno Date: Fri, 15 Dec 2000 15:16:34 +0000 Subject: [PATCH] * smtp.el (smtp-send-buffer): Pass the BUFFER argument. --- ChangeLog | 4 ++++ smtp.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 15d746e..654354b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-12-15 Daiki Ueno + + * smtp.el (smtp-send-buffer): Pass the BUFFER argument. + 2000-12-15 Katsumi Yamaoka * smtp.el: Require `pcustom' instead of `custom'. diff --git a/smtp.el b/smtp.el index a2cbb6c..e389660 100644 --- a/smtp.el +++ b/smtp.el @@ -275,7 +275,7 @@ of the host to connect to. SERVICE is name of the service desired." (get-buffer-create (format "*trace of SMTP session to %s*" server))) (erase-buffer) - (buffer-disable-undo) + (buffer-disable-undo (current-buffer)) (unless (smtp-find-connection (current-buffer)) (smtp-open-connection (current-buffer) server smtp-service)) (make-local-variable 'smtp-read-point) -- 1.7.10.4