summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-09-02 10:02:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-02 10:02:20 +0000
commit53c4c00cd908b83921217c52fa633bcfdd89f0fb (patch)
tree5523bdb3ed3f2e4d99eadbb6da8a7e57136e43d9 /sv.c
parentd8a34499b0ed1aed7c7d5741ef20a99cbe385896 (diff)
downloadperl-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 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 8713bf68a0..3250d2a0c4 100644
--- a/sv.c
+++ b/sv.c
@@ -10239,7 +10239,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_reg_re = (regexp*)NULL;
PL_reg_ganch = Nullch;
PL_reg_sv = Nullsv;
- PL_reg_sv_utf8 = FALSE;
+ PL_reg_match_utf8 = FALSE;
PL_reg_magic = (MAGIC*)NULL;
PL_reg_oldpos = 0;
PL_reg_oldcurpm = (PMOP*)NULL;