diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-29 11:41:56 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-29 11:41:56 -0300 |
commit | 4e56c0d51412817a238f9de6453aaa16704a770d (patch) | |
tree | 0a73178d345df961f32cf167dc6a92a5813ab6ed /lvm.h | |
parent | ac12f4db4b2f715b1556722b6ed65804cfd6348a (diff) | |
download | lua-4e56c0d51412817a238f9de6453aaa16704a770d.tar.gz lua-4e56c0d51412817a238f9de6453aaa16704a770d.tar.bz2 lua-4e56c0d51412817a238f9de6453aaa16704a770d.zip |
better implementation for luaV_pack
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.22 2000/05/08 19:32:53 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.23 2000/06/06 16:31:41 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 | */ |
@@ -17,7 +17,7 @@ | |||
17 | #define tostring(L,o) ((ttype(o) != TAG_STRING) && (luaV_tostring(L, o) != 0)) | 17 | #define tostring(L,o) ((ttype(o) != TAG_STRING) && (luaV_tostring(L, o) != 0)) |
18 | 18 | ||
19 | 19 | ||
20 | void luaV_pack (lua_State *L, StkId firstel, int nvararg, TObject *tab); | 20 | void luaV_pack (lua_State *L, StkId firstel); |
21 | int luaV_tonumber (TObject *obj); | 21 | int luaV_tonumber (TObject *obj); |
22 | int luaV_tostring (lua_State *L, TObject *obj); | 22 | int luaV_tostring (lua_State *L, TObject *obj); |
23 | void luaV_gettable (lua_State *L, StkId top); | 23 | void luaV_gettable (lua_State *L, StkId top); |