diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-19 09:45:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-19 09:45:25 -0300 |
commit | 938092489b9df19c9da7481c68d74dd7e0104949 (patch) | |
tree | 0f7ce5978e29afb39677045e817a850f23148215 /ldebug.h | |
parent | 578d1da00d4144caaf2ea7406680f76adcfc5af1 (diff) | |
download | lua-938092489b9df19c9da7481c68d74dd7e0104949.tar.gz lua-938092489b9df19c9da7481c68d74dd7e0104949.tar.bz2 lua-938092489b9df19c9da7481c68d74dd7e0104949.zip |
erroneous objects may not live in the stack
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 1.15 2001/06/28 19:58:57 roberto Exp $ | 2 | ** $Id: ldebug.h,v 1.16 2001/11/28 20:13:13 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 | */ |
@@ -12,9 +12,9 @@ | |||
12 | #include "luadebug.h" | 12 | #include "luadebug.h" |
13 | 13 | ||
14 | 14 | ||
15 | void luaG_typeerror (lua_State *L, StkId o, const char *op); | 15 | void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); |
16 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); | 16 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); |
17 | void luaG_aritherror (lua_State *L, StkId p1, TObject *p2); | 17 | void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2); |
18 | int luaG_getline (int *lineinfo, int pc, int refline, int *refi); | 18 | int luaG_getline (int *lineinfo, int pc, int refline, int *refi); |
19 | void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); | 19 | void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); |
20 | int luaG_checkcode (const Proto *pt); | 20 | int luaG_checkcode (const Proto *pt); |