aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 514d5bbc..d0e4216c 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.43 2002/05/07 17:36:56 roberto Exp roberto $ 2** $Id: llex.h,v 1.44 2002/09/03 11:57:38 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*/
@@ -56,7 +56,8 @@ typedef struct LexState {
56 Token lookahead; /* look ahead token */ 56 Token lookahead; /* look ahead token */
57 struct FuncState *fs; /* `FuncState' is private to the parser */ 57 struct FuncState *fs; /* `FuncState' is private to the parser */
58 struct lua_State *L; 58 struct lua_State *L;
59 struct zio *z; /* input stream */ 59 ZIO *z; /* input stream */
60 Mbuffer *buff; /* buffer for tokens */
60 TString *source; /* current source name */ 61 TString *source; /* current source name */
61} LexState; 62} LexState;
62 63