diff options
author | Kenichi Handa <handa@m17n.org> | 1997-11-08 03:09:24 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-11-08 03:09:24 +0000 |
commit | aa2fada65e0ed0cd2e791185f2a86f34a03dc1d9 (patch) | |
tree | 7fa117933c6349e580186f45005ccdf5ac10c128 /lisp | |
parent | 0791fc5615064e8277caf736c0d62632a6b12e54 (diff) | |
download | emacs-aa2fada65e0ed0cd2e791185f2a86f34a03dc1d9.tar.gz emacs-aa2fada65e0ed0cd2e791185f2a86f34a03dc1d9.tar.bz2 emacs-aa2fada65e0ed0cd2e791185f2a86f34a03dc1d9.zip |
(nntp-coding-system-for-read): Set default value to
binary.
(nntp-coding-system-for-write): Likewise.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/nntp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index d73bf1c87c0..eeb93748af3 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -150,10 +150,10 @@ server there that you can connect to. See also `nntp-open-connection-function'" "*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 +(defvoo nntp-coding-system-for-read 'binary "*Coding system to read from NNTP.") -(defvoo nntp-coding-system-for-write nil +(defvoo nntp-coding-system-for-write 'binary "*Coding system to write to NNTP.") |