From ad042d6b30359f0d7904e6d54abe187354f993fb Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 12 Mar 2002 12:53:16 +0000 Subject: [PATCH] * pop3.el (pop3-open-server): Set process buffer unibyte. --- ChangeLog | 4 ++++ lisp/pop3.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 79453d7..73c2217 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-03-12 Katsumi Yamaoka + + * lisp/pop3.el (pop3-open-server): Set process buffer unibyte. + 2002-02-22 Katsumi Yamaoka * lisp/gnus-art.el (gnus-request-article-this-buffer): Temporally diff --git a/lisp/pop3.el b/lisp/pop3.el index 2c2136b..c6584e6 100644 --- a/lisp/pop3.el +++ b/lisp/pop3.el @@ -188,7 +188,7 @@ Nil means no, t means yes, not-nil-or-t means yet to be determined.") "Open TCP connection to MAILHOST on PORT. Returns the process associated with the connection. Argument PORT specifies connecting port." - (let (process) + (let (default-enable-multibyte-characters process) (save-excursion (set-buffer (get-buffer-create (concat " trace of POP session to " mailhost))) -- 1.7.10.4