summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-05-20 12:31:09 +0000
committerNicholas Clark <nick@ccl4.org>2006-05-20 12:31:09 +0000
commitc28fe1ecc160a002d731cdf38ff7215ad3cf2a19 (patch)
tree1e2f422e7ae0c64e5419784494fae185eb6e02eb /scope.h
parente22ae1e278fa878ce0da6700e97da49f0dacf636 (diff)
downloadperl-c28fe1ecc160a002d731cdf38ff7215ad3cf2a19.tar.gz
Rename cop_hints to cop_hints_hash
p4raw-id: //depot/perl@28252
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scope.h b/scope.h
index b18b84e532..9943a05876 100644
--- a/scope.h
+++ b/scope.h
@@ -158,12 +158,12 @@ Closing bracket on a callback. See C<ENTER> and L<perlcall>.
SSPUSHPTR(GvHV(PL_hintgv)); \
GvHV(PL_hintgv) = Perl_hv_copy_hints_hv(aTHX_ GvHV(PL_hintgv)); \
} \
- 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; \
} \
- SSPUSHPTR(PL_compiling.cop_hints); \
+ SSPUSHPTR(PL_compiling.cop_hints_hash); \
SSPUSHINT(PL_hints); \
SSPUSHINT(SAVEt_HINTS); \
} STMT_END