diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 18:12:35 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 23:02:10 -0700 |
commit | 8af2014272725e01526eb3ee0e591a9460cc770f (patch) | |
tree | 9bb3ec56b55df175f8616e380a6875ff1612a29c /gv.c | |
parent | 9d3c658e5c246089e541ed0d652aaccf018f16e9 (diff) | |
download | perl-8af2014272725e01526eb3ee0e591a9460cc770f.tar.gz |
&CORE::getpgrp()
This commit allows &CORE::getpgrp to be called through references and
via ampersand syntax. pp_getpgrp is modified to take into account the
nulls pushed on to the stack in pp_coreargs, since pp_coreargs has no
other way to tell getpgrp how many arguments it’s actually getting.
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1354,7 +1354,7 @@ Perl_gv_fetchpvn_flags(pTHX_ const char *nambeg, STRLEN full_len, I32 flags, case KEY_chdir: case KEY_chomp: case KEY_chop: case KEY_each: case KEY_eof: case KEY_exec: - case KEY_getpgrp: case KEY_gmtime: + case KEY_gmtime: case KEY_index: case KEY_keys: case KEY_localtime: case KEY_lock: case KEY_lstat: case KEY_mkdir: case KEY_open: case KEY_pop: |