diff options
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 */ |