aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-19 09:45:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-19 09:45:25 -0300
commit938092489b9df19c9da7481c68d74dd7e0104949 (patch)
tree0f7ce5978e29afb39677045e817a850f23148215 /ldebug.h
parent578d1da00d4144caaf2ea7406680f76adcfc5af1 (diff)
downloadlua-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ldebug.h b/ldebug.h
index 30c2c3bc..18afa5ab 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -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
15void luaG_typeerror (lua_State *L, StkId o, const char *op); 15void luaG_typeerror (lua_State *L, const TObject *o, const char *opname);
16void luaG_concaterror (lua_State *L, StkId p1, StkId p2); 16void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
17void luaG_aritherror (lua_State *L, StkId p1, TObject *p2); 17void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2);
18int luaG_getline (int *lineinfo, int pc, int refline, int *refi); 18int luaG_getline (int *lineinfo, int pc, int refline, int *refi);
19void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); 19void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2);
20int luaG_checkcode (const Proto *pt); 20int luaG_checkcode (const Proto *pt);