summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-05-04 22:18:42 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-05-04 22:18:42 +0000
commitf06b58485d86282d0dbf47ffb2a797860a8346a7 (patch)
tree07c4e5c03fed4ea4d26bc3992145d69cc6e14b04 /perl.h
parenta78e478ad711fa7fa8f46adc6709dd5ab38118c6 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 1ffdba7814..1220de1426 100644
--- a/perl.h
+++ b/perl.h
@@ -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"