aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-08 20:42:41 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-08 20:42:41 -0200
commite01f5e680951a66bd67a22eeed1d9e05ab30b9f2 (patch)
tree99ff32eedd3bf3194561f5a2d916d948ba81c4f9 /llex.h
parentcbfc581990db2e20ee06670dbf84f28bcfe1dc42 (diff)
downloadlua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.tar.gz
lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.tar.bz2
lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.zip
better order of record fields for 64-bit machines
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 8f0ae213..67edd491 100644
--- a/llex.h
+++ b/llex.h
@@ -50,13 +50,13 @@ typedef struct Token {
50 50
51typedef struct LexState { 51typedef struct LexState {
52 int current; /* current character (charint) */ 52 int current; /* current character (charint) */
53 int linenumber; /* input line counter */
54 int lastline; /* line of last token `consumed' */
53 Token t; /* current token */ 55 Token t; /* current token */
54 Token lookahead; /* look ahead token */ 56 Token lookahead; /* look ahead token */
55 struct FuncState *fs; /* `FuncState' is private to the parser */ 57 struct FuncState *fs; /* `FuncState' is private to the parser */
56 struct lua_State *L; 58 struct lua_State *L;
57 struct zio *z; /* input stream */ 59 struct zio *z; /* input stream */
58 int linenumber; /* input line counter */
59 int lastline; /* line of last token `consumed' */
60 TString *source; /* current source name */ 60 TString *source; /* current source name */
61} LexState; 61} LexState;
62 62