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 /op.c | |
parent | b28e2c3cb7448b983edc991b66c9eb650488d89b (diff) | |
download | perl-defdfed5e6b9e2f8b9451febd0406ed351042bb9.tar.gz |
add hv_copy_hints_hv and save_hints to the API
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |