diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-08 17:42:07 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-08 17:42:07 -0300 |
commit | 0802a9df9e9326c5e61f0d6b69685c2c253de5f2 (patch) | |
tree | c0f34b8fbf79694ea3d5f9d98f14680ba74a2b14 /luadebug.h | |
parent | f90bc248b3c3c18941a96038b2a7517ad571d8b1 (diff) | |
download | lua-0802a9df9e9326c5e61f0d6b69685c2c253de5f2.tar.gz lua-0802a9df9e9326c5e61f0d6b69685c2c253de5f2.tar.bz2 lua-0802a9df9e9326c5e61f0d6b69685c2c253de5f2.zip |
no more options for debug information: it is always on
Diffstat (limited to 'luadebug.h')
-rw-r--r-- | luadebug.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luadebug.h,v 1.9 2000/01/19 12:00:45 roberto Exp roberto $ | 2 | ** $Id: luadebug.h,v 1.10 2000/03/30 17:19:48 roberto Exp roberto $ |
3 | ** Debugging API | 3 | ** Debugging API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -22,8 +22,6 @@ int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar); | |||
22 | int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); | 22 | int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); |
23 | int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); | 23 | int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); |
24 | 24 | ||
25 | int lua_setdebug (lua_State *L, int debug); | ||
26 | |||
27 | lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); | 25 | lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); |
28 | lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); | 26 | lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); |
29 | 27 | ||