diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-02 10:02:20 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-02 10:02:20 +0000 |
commit | 53c4c00cd908b83921217c52fa633bcfdd89f0fb (patch) | |
tree | 5523bdb3ed3f2e4d99eadbb6da8a7e57136e43d9 /pp.c | |
parent | d8a34499b0ed1aed7c7d5741ef20a99cbe385896 (diff) | |
download | perl-53c4c00cd908b83921217c52fa633bcfdd89f0fb.tar.gz |
Rename the variable: it *used* to be (wrongly) that the
code related to PL_reg_sv (so PL_reg_sv_utf8 was logical)
but that is no more the case: PL_reg_match_utf8 is better.
p4raw-id: //depot/perl@11823
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4165,7 +4165,7 @@ PP(pp_split) TAINT_IF((pm->op_pmflags & PMf_LOCALE) && (pm->op_pmflags & (PMf_WHITE | PMf_SKIPWHITE))); - PL_reg_sv_utf8 = do_utf8; + PL_reg_match_utf8 = do_utf8; if (pm->op_pmreplroot) { #ifdef USE_ITHREADS |