summaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2016-08-02 17:57:52 -0700
committerFather Chrysostomos <sprout@cpan.org>2016-08-03 00:40:44 -0700
commit734652892ae108d2cae2d8d50c047bffcf9b8237 (patch)
tree458f32b31e897facb9dfdeab26dc320c10e4b686 /parser.h
parentc7202deeaccd41c87be26607b12888eb48962016 (diff)
downloadperl-734652892ae108d2cae2d8d50c047bffcf9b8237.tar.gz
parser.h: Make nexttoke a U8
As mentioned in the commit message for a2867f88735d4, this can only contain numbers from 0 to 5.
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.h b/parser.h
index 35f172ea4e..ba09a21fec 100644
--- a/parser.h
+++ b/parser.h
@@ -100,7 +100,7 @@ typedef struct yy_parser {
YYSTYPE nextval[5]; /* value of next token, if any */
I32 nexttype[5]; /* type of next token */
- U32 nexttoke;
+ U8 nexttoke;
COP *saved_curcop; /* the previous PL_curcop */
char tokenbuf[256];