diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-05 11:51:21 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-05 11:51:21 -0300 |
commit | 0417a4bb0b3a2a51b251eddbc5860478e316eb53 (patch) | |
tree | 38400c59dfdef6e2b3c0f8fb613cdc599d99f8f6 /ldebug.h | |
parent | 5037196f6fddb828056578b1c0d352cdef672d6a (diff) | |
download | lua-0417a4bb0b3a2a51b251eddbc5860478e316eb53.tar.gz lua-0417a4bb0b3a2a51b251eddbc5860478e316eb53.tar.bz2 lua-0417a4bb0b3a2a51b251eddbc5860478e316eb53.zip |
new implementation for tailcalls and error handling
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 1.24 2002/07/08 18:21:33 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 1.25 2002/07/08 20:22:08 roberto Exp roberto $ |
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 | */ |
@@ -23,6 +23,7 @@ | |||
23 | #define allowhook(L) ((L->hookmask) & 1) | 23 | #define allowhook(L) ((L->hookmask) & 1) |
24 | 24 | ||
25 | 25 | ||
26 | void luaG_saveallpcs (lua_State *L); | ||
26 | void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); | 27 | void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); |
27 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); | 28 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); |
28 | void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2); | 29 | void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2); |