diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-07-21 21:59:36 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-07-21 21:59:36 -0300 |
commit | 45b173cbf89597123267a69bace778cf498d6c98 (patch) | |
tree | 561573acd810544ba8c743df0335e5fbe64f302c /llex.h | |
parent | a94cba4b88a940cba7a35244b8a1b393f33a905c (diff) | |
download | lua-45b173cbf89597123267a69bace778cf498d6c98.tar.gz lua-45b173cbf89597123267a69bace778cf498d6c98.tar.bz2 lua-45b173cbf89597123267a69bace778cf498d6c98.zip |
warnings/details
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 */ |