diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-01 17:09:44 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-01 17:09:44 +0000 |
commit | cc49e20bd7575d1d37e92731860d63daa4d52ecc (patch) | |
tree | 1b460232564e19658a102bc3cd67d08e537a5c8f /scope.c | |
parent | 625a29bd030689ee3f060be950e2f2ffc93c94c9 (diff) | |
download | perl-cc49e20bd7575d1d37e92731860d63daa4d52ecc.tar.gz |
macros for COP.cop_filegv access
p4raw-id: //depot/perl@4505
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -283,7 +283,7 @@ Perl_save_gp(pTHX_ GV *gv, I32 empty) if (GvCVu(gv)) PL_sub_generation++; /* taking a method out of circulation */ - else if (GvIOp(gv) && (IoFLAGS(GvIOp(gv)) & IOf_ARGV)) { + if (GvIOp(gv) && (IoFLAGS(GvIOp(gv)) & IOf_ARGV)) { gp->gp_io = newIO(); IoFLAGS(gp->gp_io) |= IOf_ARGV|IOf_START; } |