aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-10-08 09:58:00 +0000
committerRichard M. Stallman1998-10-08 09:58:00 +0000
commitcebe85e9dfce6769aa163c85180cb7401f2fadb5 (patch)
treec0ac0e694ba26fe74a78465120e494af8fdd8493
parent55d8d76935bcfed646accf93a2120b886a550e4e (diff)
downloademacs-cebe85e9dfce6769aa163c85180cb7401f2fadb5.tar.gz
emacs-cebe85e9dfce6769aa163c85180cb7401f2fadb5.zip
(pop3-open-server): Set process-coding-system-alist around open-network-stream.
-rw-r--r--lisp/gnus/pop3.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el
index 4b10f782e3f..27189bf3725 100644
--- a/lisp/gnus/pop3.el
+++ b/lisp/gnus/pop3.el
@@ -109,7 +109,9 @@ Used for APOP authentication.")
109Returns the process associated with the connection." 109Returns the process associated with the connection."
110 (let ((process-buffer 110 (let ((process-buffer
111 (get-buffer-create (format "trace of POP session to %s" mailhost))) 111 (get-buffer-create (format "trace of POP session to %s" mailhost)))
112 (process)) 112 (process)
113 (process-coding-system-alist
114 (cons '("POP" . nil) process-coding-system-alist)))
113 (save-excursion 115 (save-excursion
114 (set-buffer process-buffer) 116 (set-buffer process-buffer)
115 (erase-buffer)) 117 (erase-buffer))