From: yamaoka Date: Mon, 8 Jun 1998 06:24:43 +0000 (+0000) Subject: emu-mule.el (insert-file-contents-as-binary): Use file-coding-system-for-read instead... X-Git-Tag: apel-8_15~13 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfceead304b0086ef9b6e3014b75a6921ed4f28d;p=elisp%2Fapel.git emu-mule.el (insert-file-contents-as-binary): Use file-coding-system-for-read instead of file-coding-system. --- diff --git a/ChangeLog b/ChangeLog index 5b4f2e0..44604b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1998-06-08 Katsumi Yamaoka + + * emu-mule.el (insert-file-contents-as-binary): Use + file-coding-system-for-read instead of file-coding-system. + + 1998-06-06 MORIOKA Tomohiko * APEL: Version 8.14 was released. diff --git a/emu-mule.el b/emu-mule.el index 8384501..cce6a84 100644 --- a/emu-mule.el +++ b/emu-mule.el @@ -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) ))