diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-04-05 01:50:33 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-04-05 01:50:33 +0000 |
commit | 4f639d21b5c9a079a204ea1a0168f3c1a4ed5214 (patch) | |
tree | c2b5d2f8230d423e855973abe39d8126adff6ff3 /sv.c | |
parent | 4aabdb9b669fb3cae6e0122289e74e446eaf01cc (diff) | |
download | perl-4f639d21b5c9a079a204ea1a0168f3c1a4ed5214.tar.gz |
eliminate PL_regprecomp, PL_regprogram, PL_regnpar and PL_regdata
(only another 441 global vars to go ...)
p4raw-id: //depot/perl@27716
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -11432,8 +11432,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_watchok = NULL; PL_regdummy = proto_perl->Tregdummy; - PL_regprecomp = NULL; - PL_regnpar = 0; PL_regsize = 0; PL_colorset = 0; /* reinits PL_colors[] */ /*PL_colors[6] = {0,0,0,0,0,0};*/ @@ -11447,12 +11445,10 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_regtill = NULL; PL_reg_start_tmp = (char**)NULL; PL_reg_start_tmpl = 0; - PL_regdata = (struct reg_data*)NULL; PL_bostr = NULL; PL_reg_flags = 0; PL_reg_eval_set = 0; PL_regnarrate = 0; - PL_regprogram = (regnode*)NULL; PL_regindent = 0; PL_reg_call_cc = (struct re_cc_state*)NULL; PL_reg_re = (regexp*)NULL; |