summaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-10 16:50:47 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-10 16:50:47 -0300
commitdaf09c476fe375d8a9a47bc1294a1cd430290226 (patch)
tree1d4ecc2d4001f2195168eaeafb257c9af8b94793 /ldebug.h
parente238efc5367a8d88757dd84df0683e1d8d9f9211 (diff)
downloadlua-github-daf09c476fe375d8a9a47bc1294a1cd430290226.tar.gz
still better error messages
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 15be1eb4..3db8976f 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -1,5 +1,5 @@
/*
-** $Id: ldebug.h,v 1.2 2000/06/28 20:20:36 roberto Exp roberto $
+** $Id: ldebug.h,v 1.3 2000/08/08 18:26:05 roberto Exp roberto $
** Auxiliary functions from Debug Interface module
** See Copyright Notice in lua.h
*/
@@ -12,8 +12,8 @@
#include "luadebug.h"
-void luaG_callerror (lua_State *L, StkId func);
-void luaG_indexerror (lua_State *L, StkId t);
+void luaG_typeerror (lua_State *L, StkId o, const char *op);
+void luaG_binerror (lua_State *L, StkId p1, lua_Type t, const char *op);
int luaG_getline (int *lineinfo, int pc, int refline, int *refi);