summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-21 15:13:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-21 15:13:56 -0300
commitb69e712713785394ceefa11ab3e5f9636abea733 (patch)
tree0fa1b8b00ffbb5cfe0113d290b48b4fc528d2695 /llex.h
parentf51775950737eb4d097cda0bba143973b5385947 (diff)
downloadlua-github-b69e712713785394ceefa11ab3e5f9636abea733.tar.gz
new way to generate SETLINEs
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llex.h b/llex.h
index 8528dc20..604b8bf1 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.28 2000/05/26 14:04:04 roberto Exp roberto $
+** $Id: llex.h,v 1.29 2000/06/19 18:05:14 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -51,6 +51,7 @@ typedef struct LexState {
struct lua_State *L;
struct zio *z; /* input stream */
int linenumber; /* input line counter */
+ int lastline; /* line of last token `consumed' */
TString *source; /* current source name */
} LexState;