Don't restrict `coding-system-for-read' by `binary' when loading `.gnus'.
authorkeiichi <keiichi>
Wed, 5 Aug 1998 08:50:42 +0000 (08:50 +0000)
committerkeiichi <keiichi>
Wed, 5 Aug 1998 08:50:42 +0000 (08:50 +0000)
ChangeLog
lisp/gnus-start.el

index f3387a0..3d5ff05 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-08-05  Keiichi Suzuki  <kei-suzu@mail.wbs.ne.jp>
+
+       * lisp/gnus-start.el (gnus-read-init-file): Don't restrict
+       `coding-system-for-read' by `binary' when loading `.gnus'.
+
 1998-08-04  Tatsuya Ichikawa  <t-ichi@po.shiojiri.ne.jp>
 
        * lisp/gnus.el (gnus-version-number): Update to 6.8.5.
index 91b31ca..f19e38c 100644 (file)
@@ -429,8 +429,7 @@ Can be used to turn version control on or off."
                   (file-exists-p (concat file ".el"))
                   (file-exists-p (concat file ".elc")))
               (condition-case var
-                  (let ((coding-system-for-read 'binary))
-                    (load file nil t))
+                    (load file nil t)
                 (error
                  (error "Error in %s: %s" file var)))))))))