summaryrefslogtreecommitdiff
path: root/lisp/gnus/pop3.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-10-12 23:15:16 +0000
committerRichard M. Stallman <rms@gnu.org>1998-10-12 23:15:16 +0000
commitc03adfbdf1d0a9fc63e395e3380fade6fba9751e (patch)
tree2764302a64359acfdf332f9633ea21775780d41d /lisp/gnus/pop3.el
parentb80d5655b016f15aaddb231ac75bfb18f0ac96dd (diff)
downloademacs-c03adfbdf1d0a9fc63e395e3380fade6fba9751e.tar.gz
(pop3-open-server): Bind coding-system-for-read and ...-for-write.
Diffstat (limited to 'lisp/gnus/pop3.el')
-rw-r--r--lisp/gnus/pop3.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el
index 27189bf3725..ce1390f02e7 100644
--- a/lisp/gnus/pop3.el
+++ b/lisp/gnus/pop3.el
@@ -110,8 +110,8 @@ Returns the process associated with the connection."
(let ((process-buffer
(get-buffer-create (format "trace of POP session to %s" mailhost)))
(process)
- (process-coding-system-alist
- (cons '("POP" . nil) process-coding-system-alist)))
+ (coding-system-for-read 'no-conversion)
+ (coding-system-for-write 'no-conversion))
(save-excursion
(set-buffer process-buffer)
(erase-buffer))