CRLF platform issue with io/utf8 fix.
Nick Ing-Simmons [Thu, 21 Dec 2000 21:54:04 +0000 (21:54 +0000)]
p4raw-id: //depot/perlio@8225

t/io/utf8.t

index ea19a05..04554e7 100755 (executable)
@@ -76,7 +76,7 @@ print "ok 15\n";
 close F;
 
 open F, ">:utf8", 'a' or die $!;
-
+binmode(F);  # we write a "\n" and then tell() - avoid CRLF issues.
 print F $a;
 my $y;
 { my $x = tell(F);