diff options
author | Larry Wall <larry@wall.org> | 1998-09-05 23:48:24 +0000 |
---|---|---|
committer | Larry Wall <larry@wall.org> | 1998-09-05 23:48:24 +0000 |
commit | 4757a2438b123364ad98fc0cb4698e56331f713b (patch) | |
tree | d1e491103e421493e8c170df368431ccea81971a /pp.c | |
parent | 342930fbe48873e4ee7fdf12f4ea00e063c13bb8 (diff) | |
download | perl-4757a2438b123364ad98fc0cb4698e56331f713b.tar.gz |
tr/// logic was hosed under utf8
p4raw-id: //depot/perl@1781
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -669,7 +669,7 @@ PP(pp_trans) EXTEND(SP,1); } TARG = sv_newmortal(); - PUSHi(do_trans(sv, PL_op)); + PUSHi(do_trans(sv)); RETURN; } |