diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-20 12:31:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-20 12:31:09 +0000 |
commit | c28fe1ecc160a002d731cdf38ff7215ad3cf2a19 (patch) | |
tree | 1e2f422e7ae0c64e5419784494fae185eb6e02eb /sv.c | |
parent | e22ae1e278fa878ce0da6700e97da49f0dacf636 (diff) | |
download | perl-c28fe1ecc160a002d731cdf38ff7215ad3cf2a19.tar.gz |
Rename cop_hints to cop_hints_hash
p4raw-id: //depot/perl@28252
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10965,9 +10965,9 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings); if (!specialCopIO(PL_compiling.cop_io)) PL_compiling.cop_io = sv_dup_inc(PL_compiling.cop_io, param); - if (PL_compiling.cop_hints) { + if (PL_compiling.cop_hints_hash) { HINTS_REFCNT_LOCK; - PL_compiling.cop_hints->refcounted_he_refcnt++; + PL_compiling.cop_hints_hash->refcounted_he_refcnt++; HINTS_REFCNT_UNLOCK; } PL_curcop = (COP*)any_dup(proto_perl->Tcurcop, proto_perl); |