diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-25 12:59:42 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-25 12:59:42 -0300 |
commit | 32bf6c9b277d04a35591ca6420cf1518ebc1a7f3 (patch) | |
tree | d0d2cf99489a745e5d54f9a4779629b5095c47f1 /ldebug.h | |
parent | 9c43d6a24e2612504686f9efbade264e2246bbfb (diff) | |
download | lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.tar.gz lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.tar.bz2 lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.zip |
functions 'traceexec', 'callTM', and 'call_binTM' moved to other
files to make 'lvm.c' a little smaller
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 2.6 2011/06/02 19:31:40 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 2.7 2011/10/07 20:45:19 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 | */ |
@@ -30,5 +30,7 @@ LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1, | |||
30 | const TValue *p2); | 30 | const TValue *p2); |
31 | LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); | 31 | LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); |
32 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); | 32 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); |
33 | LUAI_FUNC void luaG_traceexec (lua_State *L); | ||
34 | |||
33 | 35 | ||
34 | #endif | 36 | #endif |