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 /luadebug.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 'luadebug.h')
-rw-r--r-- | luadebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,13 +29,13 @@ LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); | |||
29 | 29 | ||
30 | struct lua_Debug { | 30 | struct lua_Debug { |
31 | const char *event; /* `call', `return' */ | 31 | const char *event; /* `call', `return' */ |
32 | int currentline; /* (l) */ | ||
33 | const char *name; /* (n) */ | 32 | const char *name; /* (n) */ |
34 | const char *namewhat; /* (n) `global', `tag method', `local', `field' */ | 33 | const char *namewhat; /* (n) `global', `tag method', `local', `field' */ |
35 | int nups; /* (u) number of upvalues */ | ||
36 | int linedefined; /* (S) */ | ||
37 | const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ | 34 | const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ |
38 | const char *source; /* (S) */ | 35 | const char *source; /* (S) */ |
36 | int currentline; /* (l) */ | ||
37 | int nups; /* (u) number of upvalues */ | ||
38 | int linedefined; /* (S) */ | ||
39 | char short_src[LUA_IDSIZE]; /* (S) */ | 39 | char short_src[LUA_IDSIZE]; /* (S) */ |
40 | /* private part */ | 40 | /* private part */ |
41 | int _ci; /* active function */ | 41 | int _ci; /* active function */ |