diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-07 16:22:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-07 16:22:39 -0300 |
commit | 5016f43aa439662ca35a5d78e820c617c517f60a (patch) | |
tree | 167aabeccb5a2307c3de7d20542ecf7d99769d3c /lvm.h | |
parent | c1c100a0c04bc77623b32269f37df49e7a2457d2 (diff) | |
download | lua-5016f43aa439662ca35a5d78e820c617c517f60a.tar.gz lua-5016f43aa439662ca35a5d78e820c617c517f60a.tar.bz2 lua-5016f43aa439662ca35a5d78e820c617c517f60a.zip |
(much) cleaner way to control function states
Diffstat (limited to '')
-rw-r--r-- | lvm.h | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.44 2002/07/05 18:27:39 roberto Exp $ | 2 | ** $Id: lvm.h,v 1.45 2002/08/05 17:36:24 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -22,13 +22,6 @@ | |||
22 | (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) | 22 | (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) |
23 | 23 | ||
24 | 24 | ||
25 | /* | ||
26 | ** dummy addrees, to mark Lua functions calling other Lua functions (and | ||
27 | ** therefore without a valid `pc' | ||
28 | */ | ||
29 | extern Instruction const *luaV_callingmark; | ||
30 | |||
31 | |||
32 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); | 25 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); |
33 | int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); | 26 | int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); |
34 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); | 27 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); |