summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2010-09-15 00:21:16 +0100
committerRafael Garcia-Suarez <rgs@consttype.org>2010-09-16 11:15:23 +0200
commitdefdfed5e6b9e2f8b9451febd0406ed351042bb9 (patch)
tree6cc4657a95c2fa6a8117688f8d25b90a20e6e675 /scope.c
parentb28e2c3cb7448b983edc991b66c9eb650488d89b (diff)
downloadperl-defdfed5e6b9e2f8b9451febd0406ed351042bb9.tar.gz
add hv_copy_hints_hv and save_hints to the API
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index 046b3387d5..95fe5f7c66 100644
--- a/scope.c
+++ b/scope.c
@@ -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);
}