diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-21 15:13:56 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-21 15:13:56 -0300 |
commit | b69e712713785394ceefa11ab3e5f9636abea733 (patch) | |
tree | 0fa1b8b00ffbb5cfe0113d290b48b4fc528d2695 /llex.h | |
parent | f51775950737eb4d097cda0bba143973b5385947 (diff) | |
download | lua-b69e712713785394ceefa11ab3e5f9636abea733.tar.gz lua-b69e712713785394ceefa11ab3e5f9636abea733.tar.bz2 lua-b69e712713785394ceefa11ab3e5f9636abea733.zip |
new way to generate SETLINEs
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 | ||