aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-07-16 17:49:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-07-16 17:49:02 -0300
commitfa26d294aef136aa4ec48c23b4b87b853df0e3da (patch)
treef8ccce58fe28fbc116f082766eecf3a50812c82d /ldebug.h
parent5a761e3a1519eae7264209db8257b040c77556aa (diff)
downloadlua-fa26d294aef136aa4ec48c23b4b87b853df0e3da.tar.gz
lua-fa26d294aef136aa4ec48c23b4b87b853df0e3da.tar.bz2
lua-fa26d294aef136aa4ec48c23b4b87b853df0e3da.zip
new way to control `pc' of running functions
Diffstat (limited to 'ldebug.h')
-rw-r--r--ldebug.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldebug.h b/ldebug.h
index 417bd47d..03baaaee 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.h,v 1.31 2002/08/20 20:03:05 roberto Exp roberto $ 2** $Id: ldebug.h,v 1.32 2002/11/18 11:01:55 roberto Exp $
3** Auxiliary functions from Debug Interface module 3** Auxiliary functions from Debug Interface module
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -18,7 +18,6 @@
18#define resethookcount(L) (L->hookcount = L->basehookcount) 18#define resethookcount(L) (L->hookcount = L->basehookcount)
19 19
20 20
21void luaG_inithooks (lua_State *L);
22void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); 21void luaG_typeerror (lua_State *L, const TObject *o, const char *opname);
23void luaG_concaterror (lua_State *L, StkId p1, StkId p2); 22void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
24void luaG_aritherror (lua_State *L, const TObject *p1, const TObject *p2); 23void luaG_aritherror (lua_State *L, const TObject *p1, const TObject *p2);