summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-08-05 00:46:53 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-08-05 00:46:53 +0000
commit4a9ae47ac2dbde43455079cf404946a27c7b4906 (patch)
treeaf4c4cad6241a87a7aa0cd08783920248ee3ca0f /toke.c
parent2d77217b57f0b274e843a804355ed3f48edfb327 (diff)
downloadperl-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/toke.c b/toke.c
index b5315fa06a..c069978f61 100644
--- a/toke.c
+++ b/toke.c
@@ -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" : "");