projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8af582d
)
add missing C<no utf8;> tweak from Larry
Gurusamy Sarathy [Wed, 23 Sep 1998 06:36:59 +0000 (06:36 +0000)]
p4raw-id: //depot/perl@1822
t/op/subst.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/subst.t
b/t/op/subst.t
index
afa06ab
..
81cafec
100755
(executable)
--- a/
t/op/subst.t
+++ b/
t/op/subst.t
@@
-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];