changeset 19865:574f61c01920

Set no-conversion for network communication with nntpd. (gnus-mule-initialize): For safety, set no-conversion for network communication with nntpd.
author Kenichi Handa <handa@m17n.org>
date Thu, 11 Sep 1997 05:24:25 +0000
parents 44dcf37ec345
children fedcb4117e34
files lisp/gnus/gnus-mule.el
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/gnus-mule.el	Thu Sep 11 01:27:57 1997 +0000
+++ b/lisp/gnus/gnus-mule.el	Thu Sep 11 05:24:25 1997 +0000
@@ -206,7 +206,10 @@
   (add-hook 'message-send-news-hook
 	    'gnus-mule-message-send-news-function)
   (add-hook 'message-send-mail-hook
-	    'gnus-mule-message-send-mail-function))
+	    'gnus-mule-message-send-mail-function)
+  (let ((stream (get-process "nntpd")))
+    (if (processp stream)
+	(set-process-coding-system stream 'no-conversion 'no-conversion))))
 
 (gnus-mule-add-group "" 'undecided)
 (gnus-mule-add-group "fj" 'iso-2022-7bit)
@@ -221,4 +224,6 @@
 
 (add-hook 'gnus-startup-hook 'gnus-mule-initialize)
 
+(modify-coding-system-alist 'network "nntp" 'no-conversion)
+
 ;; gnus-mule.el ends here