summaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-05-05 17:38:12 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-05-05 17:38:12 +0000
commitbc177e6b66d4907a90c81f2862ce55ad78b6496f (patch)
treec5d5a48ea379b96c206696e7091532a97420284c /parser.h
parent7c1f70cbf29b1c0cfc4cf8a13260aa01453de093 (diff)
downloadperl-bc177e6b66d4907a90c81f2862ce55ad78b6496f.tar.gz
move PL_lex_state into the PL_parser struct
p4raw-id: //depot/perl@31154
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index b9f4ddae9d..1df14b4210 100644
--- a/parser.h
+++ b/parser.h
@@ -69,6 +69,7 @@ typedef struct yy_parser {
char *linestart; /* beginning of most recently read line */
char *last_uni; /* position of last named-unary op */
char *last_lop; /* position of last list operator */
+ U8 lex_state; /* next token is determined */
#ifdef PERL_MAD
SV *endwhite;