add missing C<no utf8;> tweak from Larry
authorGurusamy Sarathy <gsar@cpan.org>
Wed, 23 Sep 1998 06:36:59 +0000 (06:36 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Wed, 23 Sep 1998 06:36:59 +0000 (06:36 +0000)
p4raw-id: //depot/perl@1822

t/op/subst.t

index afa06ab..81cafec 100755 (executable)
@@ -182,6 +182,7 @@ print $_ eq 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' ? "ok 52\n" : "not ok 52\n";
 
 # same as tr/A-Z/a-z/;
 if ($^O eq 'os390') {  # An EBCDIC variant.
+    no utf8;
     y[\301-\351][\201-\251];
 } else {               # Ye Olde ASCII.  Or something like it.
     y[\101-\132][\141-\172];