On 18 Mar 2002, Nick V. Pakoulin wrote:
The solution is to set coding system for the process:
--- mail-lib/pop3.el Fri Oct 6 13:40:48 2000
+++ /c/Program Files/XEmacs/xemacs-packages/lisp/mail-lib/pop3.el Mon Mar 18 15:12:22
2002
@@ -248,6 +248,7 @@
(erase-buffer))
(setq process
(open-network-stream "POP" process-buffer mailhost port))
+ (set-process-input-coding-system process 'binary)
Look a few lines up, and you see that `coding-system-for-{read,write}' is
bound. It should be sufficient IMHO.