aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldebug.h')
-rw-r--r--ldebug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ldebug.h b/ldebug.h
index 03baaaee..b1c9ed2d 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.h,v 1.32 2002/11/18 11:01:55 roberto Exp $ 2** $Id: ldebug.h,v 1.33 2003/07/16 20:49:02 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*/
@@ -18,10 +18,10 @@
18#define resethookcount(L) (L->hookcount = L->basehookcount) 18#define resethookcount(L) (L->hookcount = L->basehookcount)
19 19
20 20
21void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); 21void luaG_typeerror (lua_State *L, const TValue *o, const char *opname);
22void luaG_concaterror (lua_State *L, StkId p1, StkId p2); 22void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
23void luaG_aritherror (lua_State *L, const TObject *p1, const TObject *p2); 23void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2);
24int luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); 24int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2);
25void luaG_runerror (lua_State *L, const char *fmt, ...); 25void luaG_runerror (lua_State *L, const char *fmt, ...);
26void luaG_errormsg (lua_State *L); 26void luaG_errormsg (lua_State *L);
27int luaG_checkcode (const Proto *pt); 27int luaG_checkcode (const Proto *pt);