# HG changeset patch # User Kenichi Handa # Date 875238655 0 # Node ID 36e81448237da0c442d1aad7b9729d2005ffc752 # Parent 6a13c8143100f916e240a1cb387bf9baa393365c (nntp-coding-system-for-write): New variable. (nntp-open-connection): Bind coding-system-for-write to nntp-coding-system-for-write. diff -r 6a13c8143100 -r 36e81448237d lisp/gnus/nntp.el --- a/lisp/gnus/nntp.el Fri Sep 26 01:50:55 1997 +0000 +++ b/lisp/gnus/nntp.el Fri Sep 26 01:50:55 1997 +0000 @@ -151,7 +151,10 @@ ;; 1997/5/4 by MORIOKA Tomohiko (defvoo nntp-coding-system-for-read nil - "*coding-system for read from NNTP.") + "*Coding system to read from NNTP.") + +(defvoo nntp-coding-system-for-write nil + "*Coding system to write to NNTP.") @@ -750,7 +753,8 @@ (process (condition-case () ;; 1997/5/4 by MORIOKA Tomohiko - (let ((coding-system-for-read nntp-coding-system-for-read)) + (let ((coding-system-for-read nntp-coding-system-for-read) + (coding-system-for-write nntp-coding-system-for-write)) (funcall nntp-open-connection-function pbuffer)) (error nil) (quit nil))))