diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-18 12:19:27 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-18 12:19:27 -0300 |
commit | 1dbe708aa84f3a1e51daf8d7e2f714e2b02f554b (patch) | |
tree | e845de9ee24b94362146e38410ae0670df18526b /ldebug.h | |
parent | 8f080fd683d63b0cd4b38380f6a5bdae5d6e2584 (diff) | |
download | lua-1dbe708aa84f3a1e51daf8d7e2f714e2b02f554b.tar.gz lua-1dbe708aa84f3a1e51daf8d7e2f714e2b02f554b.tar.bz2 lua-1dbe708aa84f3a1e51daf8d7e2f714e2b02f554b.zip |
new protocol for 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.20 2002/05/02 13:06:20 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 1.21 2002/05/15 18:57:44 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 | */ |
@@ -21,6 +21,7 @@ void luaG_concaterror (lua_State *L, StkId p1, StkId p2); | |||
21 | void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2); | 21 | void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2); |
22 | void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); | 22 | void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); |
23 | void luaG_runerror (lua_State *L, const char *fmt, ...); | 23 | void luaG_runerror (lua_State *L, const char *fmt, ...); |
24 | void luaG_errormsg (lua_State *L, int internal); | ||
24 | int luaG_checkcode (const Proto *pt); | 25 | int luaG_checkcode (const Proto *pt); |
25 | 26 | ||
26 | 27 | ||