summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-21 19:05:08 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-21 19:05:08 +0000
commit651b5b28673befa3f36a39b00591c15d5b30cca2 (patch)
treea0b972c92157745dc69c47556215c9c238d1c9b7 /intrpvar.h
parent9f7da6d537556dbe72c14a7f3fb5896e5591eace (diff)
downloadperl-651b5b28673befa3f36a39b00591c15d5b30cca2.tar.gz
Several members of struct yy_parser can go on a diet. Some I32s were
actually only holding chars. p4raw-id: //depot/perl@31015
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 781de8f70e..12a9084dd7 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -285,7 +285,7 @@ PERLVARI(Icshname, const char *, CSH)
PERLVARI(Icshlen, I32, 0)
#endif
-PERLVAR(Ilex_state, U32) /* next token is determined */
+PERLVAR(Ilex_state, U8) /* next token is determined */
/* What we know when we're in LEX_KNOWNEXT state. */
#ifdef PERL_MAD
@@ -302,7 +302,7 @@ PERLVAR(Ibufptr, char *)
PERLVAR(Ioldbufptr, char *)
PERLVAR(Ioldoldbufptr, char *)
PERLVAR(Ibufend, char *)
-PERLVARI(Iexpect,int, XSTATE) /* how to interpret ambiguous tokens */
+PERLVARI(Iexpect, U8, XSTATE) /* how to interpret ambiguous tokens */
PERLVAR(Imulti_end, I32) /* last line of multi-line string */