diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-02-08 20:42:41 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-02-08 20:42:41 -0200 |
commit | e01f5e680951a66bd67a22eeed1d9e05ab30b9f2 (patch) | |
tree | 99ff32eedd3bf3194561f5a2d916d948ba81c4f9 /llex.h | |
parent | cbfc581990db2e20ee06670dbf84f28bcfe1dc42 (diff) | |
download | lua-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,13 +50,13 @@ typedef struct Token { | |||
50 | 50 | ||
51 | typedef struct LexState { | 51 | typedef 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 | ||