diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-12-08 16:52:37 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-12-09 18:47:21 -0800 |
commit | fc99edcf6b3d3de59f7bdefc42a09167fd8b96f5 (patch) | |
tree | 168ee3780065d07103930e86c76ff5689efa8567 /pp_hot.c | |
parent | 05fbd38ddf3c46a4eef17ff66379724f742f015f (diff) | |
download | perl-fc99edcf6b3d3de59f7bdefc42a09167fd8b96f5.tar.gz |
Remove the second param to tryAMAGICunTARGETlist
This parameter is no longer used. Its value is always 0.
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -425,7 +425,7 @@ PP(pp_readline) dSP; if (TOPs) { SvGETMAGIC(TOPs); - tryAMAGICunTARGETlist(iter_amg, 0, 0); + tryAMAGICunTARGETlist(iter_amg, 0); PL_last_in_gv = MUTABLE_GV(*PL_stack_sp--); } else PL_last_in_gv = PL_argvgv, PL_stack_sp--; |