summaryrefslogtreecommitdiff
path: root/op.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 /op.c
parentb28e2c3cb7448b983edc991b66c9eb650488d89b (diff)
downloadperl-defdfed5e6b9e2f8b9451febd0406ed351042bb9.tar.gz
add hv_copy_hints_hv and save_hints to the API
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 8aa1cae581..75a52c31ed 100644
--- a/op.c
+++ b/op.c
@@ -7018,7 +7018,7 @@ Perl_ck_eval(pTHX_ OP *o)
if ((PL_hints & HINT_LOCALIZE_HH) != 0 && GvHV(PL_hintgv)) {
/* Store a copy of %^H that pp_entereval can pick up. */
OP *hhop = newSVOP(OP_HINTSEVAL, 0,
- MUTABLE_SV(Perl_hv_copy_hints_hv(aTHX_ GvHV(PL_hintgv))));
+ MUTABLE_SV(hv_copy_hints_hv(GvHV(PL_hintgv))));
cUNOPo->op_first->op_sibling = hhop;
o->op_private |= OPpEVAL_HAS_HH;
}