diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-05-04 22:18:42 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-05-04 22:18:42 +0000 |
commit | f06b58485d86282d0dbf47ffb2a797860a8346a7 (patch) | |
tree | 07c4e5c03fed4ea4d26bc3992145d69cc6e14b04 /perl.h | |
parent | a78e478ad711fa7fa8f46adc6709dd5ab38118c6 (diff) | |
download | perl-f06b58485d86282d0dbf47ffb2a797860a8346a7.tar.gz |
move some more variables into the PL_parser struct:
PL_bufptr PL_oldbufptr PL_oldoldbufptr
PL_linestart PL_bufend
PL_last_uni PL_last_lop PL_last_lop_op
p4raw-id: //depot/perl@31147
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3287,8 +3287,8 @@ struct _sublex_info { U8 super_state; /* lexer state to save */ U16 sub_inwhat; /* "lex_inwhat" to use */ OP *sub_op; /* "lex_op" to use */ - char *super_bufptr; /* PL_bufptr that was */ - char *super_bufend; /* PL_bufend that was */ + char *super_bufptr; /* PL_parser->bufptr that was */ + char *super_bufend; /* PL_parser->bufend that was */ }; #include "parser.h" |