diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-05-11 23:22:24 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-05-11 23:22:24 +0000 |
commit | 2f9285f84584cb56950bf07de6ded6ebcdc3d302 (patch) | |
tree | b5b1dd9c379db0f140bfc2ef8cd70fd5cccba18b /parser.h | |
parent | 69de8d7df79f71970f96742185284b67d38d76c6 (diff) | |
download | perl-2f9285f84584cb56950bf07de6ded6ebcdc3d302.tar.gz |
move PL_rsfp into the PL_parser struct
and simplify its creation and destruction
p4raw-id: //depot/perl@31199
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -70,6 +70,7 @@ typedef struct yy_parser { char *last_uni; /* position of last named-unary op */ char *last_lop; /* position of last list operator */ U8 lex_state; /* next token is determined */ + PerlIO *rsfp; /* current source file pointer */ #ifdef PERL_MAD SV *endwhite; |