(nntp-open-connection): Bind `coding-system-for-read' with
`nntp-coding-system-for-read' for Emacs/mule and XEmacs/mule.
(defvoo nntp-warn-about-losing-connection t
"*If non-nil, beep when a server closes connection.")
+;; 1997/5/4 by MORIOKA Tomohiko <morioka@jaist.ac.jp>
+(defvoo nntp-coding-system-for-read nil
+ "*coding-system for read from NNTP.")
+
\f
;;; Internal variables.
(let* ((pbuffer (nntp-make-process-buffer buffer))
(process
(condition-case ()
- (funcall nntp-open-connection-function pbuffer)
+ ;; 1997/5/4 by MORIOKA Tomohiko <morioka@jaist.ac.jp>
+ (let ((coding-system-for-read nntp-coding-system-for-read))
+ (funcall nntp-open-connection-function pbuffer))
(error nil)
(quit nil))))
(when process