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_sys.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_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -367,7 +367,7 @@ PP(pp_glob) * is called once and only once */ if (SvGMAGICAL(TOPs)) TOPs = sv_2mortal(newSVsv(TOPs)); - tryAMAGICunTARGETlist(iter_amg, 0, (PL_op->op_flags & OPf_SPECIAL)); + tryAMAGICunTARGETlist(iter_amg, (PL_op->op_flags & OPf_SPECIAL)); if (PL_op->op_flags & OPf_SPECIAL) { /* call Perl-level glob function instead. Stack args are: |