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 /ltm.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 'ltm.h')
-rw-r--r-- | ltm.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 2.11 2011/02/28 17:32:10 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 2.12 2013/04/12 19:07:09 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -54,4 +54,9 @@ LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, | |||
54 | TMS event); | 54 | TMS event); |
55 | LUAI_FUNC void luaT_init (lua_State *L); | 55 | LUAI_FUNC void luaT_init (lua_State *L); |
56 | 56 | ||
57 | LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, | ||
58 | const TValue *p2, TValue *p3, int hasres); | ||
59 | LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2, | ||
60 | StkId res, TMS event); | ||
61 | |||
57 | #endif | 62 | #endif |