diff options
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.35 2001/03/06 14:46:54 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.36 2001/06/20 21:07:57 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -49,7 +49,7 @@ typedef struct Token { | |||
49 | 49 | ||
50 | 50 | ||
51 | typedef struct LexState { | 51 | typedef struct LexState { |
52 | int current; /* current character */ | 52 | l_charint current; /* current character */ |
53 | Token t; /* current token */ | 53 | Token t; /* current token */ |
54 | Token lookahead; /* look ahead token */ | 54 | Token lookahead; /* look ahead token */ |
55 | struct FuncState *fs; /* `FuncState' is private to the parser */ | 55 | struct FuncState *fs; /* `FuncState' is private to the parser */ |