aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 8f0ae213..67edd491 100644
--- a/llex.h
+++ b/llex.h
@@ -50,13 +50,13 @@ typedef struct Token {
50 50
51typedef struct LexState { 51typedef struct LexState {
52 int current; /* current character (charint) */ 52 int current; /* current character (charint) */
53 int linenumber; /* input line counter */
54 int lastline; /* line of last token `consumed' */
53 Token t; /* current token */ 55 Token t; /* current token */
54 Token lookahead; /* look ahead token */ 56 Token lookahead; /* look ahead token */
55 struct FuncState *fs; /* `FuncState' is private to the parser */ 57 struct FuncState *fs; /* `FuncState' is private to the parser */
56 struct lua_State *L; 58 struct lua_State *L;
57 struct zio *z; /* input stream */ 59 struct zio *z; /* input stream */
58 int linenumber; /* input line counter */
59 int lastline; /* line of last token `consumed' */
60 TString *source; /* current source name */ 60 TString *source; /* current source name */
61} LexState; 61} LexState;
62 62