diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-05 00:46:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-05 00:46:53 +0000 |
commit | 4a9ae47ac2dbde43455079cf404946a27c7b4906 (patch) | |
tree | af4c4cad6241a87a7aa0cd08783920248ee3ca0f /toke.c | |
parent | 2d77217b57f0b274e843a804355ed3f48edfb327 (diff) | |
download | perl-4a9ae47ac2dbde43455079cf404946a27c7b4906.tar.gz |
end pod processing when source file is closed (prevents it carrying
over into require()d files)
p4raw-id: //depot/maint-5.005/perl@1730
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1822,6 +1822,7 @@ yylex(void) else (void)PerlIO_close(PL_rsfp); PL_rsfp = Nullfp; + PL_doextract = FALSE; } if (!PL_in_eval && (PL_minus_n || PL_minus_p)) { sv_setpv(PL_linestr,PL_minus_p ? ";}continue{print" : ""); |