diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-01-14 09:52:51 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-01-14 09:52:51 +0000 |
commit | fb622db0657a53699cb72fa7e5cdf67e58366454 (patch) | |
tree | 92161e4c614e3a8faa927642709e9a4d952d2ebe /doop.c | |
parent | 54667de8ae602ad3606b45ba6b72a2519d132842 (diff) | |
download | perl-fb622db0657a53699cb72fa7e5cdf67e58366454.tar.gz |
SvUTF8_off() in do_join can be unconditional.
p4raw-id: //depot/perl@23799
Diffstat (limited to 'doop.c')
-rw-r--r-- | doop.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -676,8 +676,7 @@ Perl_do_join(pTHX_ register SV *sv, SV *del, register SV **mark, register SV **s sv_setpvn(sv, "", 0); /* sv_setpv retains old UTF8ness [perl #24846] */ - if (SvUTF8(sv)) - SvUTF8_off(sv); + SvUTF8_off(sv); if (PL_tainting && SvMAGICAL(sv)) SvTAINTED_off(sv); |