diff options
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.28 2000/05/26 14:04:04 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.29 2000/06/19 18:05:14 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 | */ |
@@ -51,6 +51,7 @@ typedef struct LexState { | |||
51 | struct lua_State *L; | 51 | struct lua_State *L; |
52 | struct zio *z; /* input stream */ | 52 | struct zio *z; /* input stream */ |
53 | int linenumber; /* input line counter */ | 53 | int linenumber; /* input line counter */ |
54 | int lastline; /* line of last token `consumed' */ | ||
54 | TString *source; /* current source name */ | 55 | TString *source; /* current source name */ |
55 | } LexState; | 56 | } LexState; |
56 | 57 | ||