summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-30 15:26:49 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-30 15:26:49 -0200
commit59f8e6fb7710e46539fb9bf63131b45012bf86ef (patch)
tree2077a5d755afd0346994a53918c881cca8357668 /lvm.h
parent05d89b5c05bdf3be8f6fd3c6d195672f1e10d13e (diff)
downloadlua-59f8e6fb7710e46539fb9bf63131b45012bf86ef.tar.gz
lua-59f8e6fb7710e46539fb9bf63131b45012bf86ef.tar.bz2
lua-59f8e6fb7710e46539fb9bf63131b45012bf86ef.zip
details ("settable")
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lvm.h b/lvm.h
index 7c9b5a8c..ee962945 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 1.5 1998/07/12 16:16:43 roberto Exp roberto $ 2** $Id: lvm.h,v 1.6 1998/12/30 13:16:50 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,7 +22,8 @@ int luaV_tonumber (TObject *obj);
22int luaV_tostring (TObject *obj); 22int luaV_tostring (TObject *obj);
23void luaV_setn (Hash *t, int val); 23void luaV_setn (Hash *t, int val);
24void luaV_gettable (void); 24void luaV_gettable (void);
25void luaV_settable (TObject *t, int mode); 25void luaV_settable (TObject *t, int deep);
26void luaV_rawsettable (TObject *t);
26void luaV_getglobal (TaggedString *ts); 27void luaV_getglobal (TaggedString *ts);
27void luaV_setglobal (TaggedString *ts); 28void luaV_setglobal (TaggedString *ts);
28StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base); 29StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base);