aboutsummaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-08 17:42:07 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-08 17:42:07 -0300
commit0802a9df9e9326c5e61f0d6b69685c2c253de5f2 (patch)
treec0f34b8fbf79694ea3d5f9d98f14680ba74a2b14 /luadebug.h
parentf90bc248b3c3c18941a96038b2a7517ad571d8b1 (diff)
downloadlua-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.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/luadebug.h b/luadebug.h
index 09f2b1e4..ce69c50e 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -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);
22int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); 22int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v);
23int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); 23int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v);
24 24
25int lua_setdebug (lua_State *L, int debug);
26
27lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); 25lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
28lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); 26lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
29 27