diff options
author | Zefram <zefram@fysh.org> | 2010-09-15 00:21:16 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-09-16 11:15:23 +0200 |
commit | defdfed5e6b9e2f8b9451febd0406ed351042bb9 (patch) | |
tree | 6cc4657a95c2fa6a8117688f8d25b90a20e6e675 /scope.c | |
parent | b28e2c3cb7448b983edc991b66c9eb650488d89b (diff) | |
download | perl-defdfed5e6b9e2f8b9451febd0406ed351042bb9.tar.gz |
add hv_copy_hints_hv and save_hints to the API
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -608,7 +608,7 @@ Perl_save_hints(pTHX) if (PL_hints & HINT_LOCALIZE_HH) { save_pushptri32ptr(GvHV(PL_hintgv), PL_hints, PL_compiling.cop_hints_hash, SAVEt_HINTS); - GvHV(PL_hintgv) = Perl_hv_copy_hints_hv(aTHX_ GvHV(PL_hintgv)); + GvHV(PL_hintgv) = hv_copy_hints_hv(GvHV(PL_hintgv)); } else { save_pushi32ptr(PL_hints, PL_compiling.cop_hints_hash, SAVEt_HINTS); } |