emu-mule.el (insert-file-contents-as-binary): Use file-coding-system-for-read instead...
authoryamaoka <yamaoka>
Mon, 8 Jun 1998 06:24:43 +0000 (06:24 +0000)
committeryamaoka <yamaoka>
Mon, 8 Jun 1998 06:24:43 +0000 (06:24 +0000)
ChangeLog
emu-mule.el

index 5b4f2e0..44604b0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-06-08  Katsumi Yamaoka   <yamaoka@jpl.org>
+
+       * emu-mule.el (insert-file-contents-as-binary): Use
+       file-coding-system-for-read instead of file-coding-system.
+       
+\f
 1998-06-06  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
 
        * APEL: Version 8.14 was released.
index 8384501..cce6a84 100644 (file)
@@ -156,7 +156,7 @@ automatic uncompression, etc.
 Namely this function ensures that only format decoding and character
 code conversion will not take place."
   (let (mc-flag
-       (file-coding-system *noconv*))
+       (file-coding-system-for-read *noconv*))
     (insert-file-contents filename visit beg end replace)
     ))