another case of enabling binmode() where it should not be: if the
Gurusamy Sarathy [Wed, 24 Apr 2002 18:59:05 +0000 (18:59 +0000)]
*.enc files are CRLF terminated, the result gets CRCRLF terminations

p4raw-id: //depot/perl@16144

ext/Encode/t/CJKT.t

index 4540034..f66bb32 100644 (file)
@@ -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);