details ("settable")

This commit is contained in:
Roberto Ierusalimschy
1998-12-30 15:26:49 -02:00
parent 05d89b5c05
commit 59f8e6fb77
3 changed files with 50 additions and 43 deletions

5
lvm.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lvm.h,v 1.5 1998/07/12 16:16:43 roberto Exp roberto $
** $Id: lvm.h,v 1.6 1998/12/30 13:16:50 roberto Exp roberto $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -22,7 +22,8 @@ int luaV_tonumber (TObject *obj);
int luaV_tostring (TObject *obj);
void luaV_setn (Hash *t, int val);
void luaV_gettable (void);
void luaV_settable (TObject *t, int mode);
void luaV_settable (TObject *t, int deep);
void luaV_rawsettable (TObject *t);
void luaV_getglobal (TaggedString *ts);
void luaV_setglobal (TaggedString *ts);
StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base);