From: Gurusamy Sarathy Date: Wed, 24 Apr 2002 18:59:05 +0000 (+0000) Subject: another case of enabling binmode() where it should not be: if the X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=247097ea2efccc841110d1988c93056954c2faf7;p=p5sagit%2Fp5-mst-13.2.git another case of enabling binmode() where it should not be: if the *.enc files are CRLF terminated, the result gets CRCRLF terminations p4raw-id: //depot/perl@16144 --- diff --git a/ext/Encode/t/CJKT.t b/ext/Encode/t/CJKT.t index 4540034..f66bb32 100644 --- a/ext/Encode/t/CJKT.t +++ b/ext/Encode/t/CJKT.t @@ -55,7 +55,6 @@ for my $charset (sort keys %Charset){ open $src, "<$src_enc" or die "$src_enc : $!"; - binmode($src); $txt = join('',<$src>); close($src);