diff options
-rw-r--r-- | lisp/gnus/pop3.el | 4 |
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)) |