aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-25 14:47:14 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-25 14:47:14 -0300
commit801aaf37b14a1fad5bb49c9a4200d25680152471 (patch)
treee3cc5cdebac6d503091f4ba16444f8ecfa8dfdb2 /ldebug.h
parent00af2faae71e6388ee61ef18b2c5902a42e9bc27 (diff)
downloadlua-801aaf37b14a1fad5bb49c9a4200d25680152471.tar.gz
lua-801aaf37b14a1fad5bb49c9a4200d25680152471.tar.bz2
lua-801aaf37b14a1fad5bb49c9a4200d25680152471.zip
simpler implementation for line information
Diffstat (limited to 'ldebug.h')
-rw-r--r--ldebug.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldebug.h b/ldebug.h
index 18afa5ab..36b866df 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.h,v 1.16 2001/11/28 20:13:13 roberto Exp roberto $ 2** $Id: ldebug.h,v 1.17 2002/03/19 12:45:25 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*/
@@ -15,7 +15,6 @@
15void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); 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, const TObject *p2); 17void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2);
18int luaG_getline (int *lineinfo, int pc, int refline, int *refi);
19void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); 18void luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2);
20int luaG_checkcode (const Proto *pt); 19int luaG_checkcode (const Proto *pt);
21 20