aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-27 13:59:25 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-27 13:59:25 -0200
commitef37c87e9333d825838d421e4652076b70c83a72 (patch)
tree2e42a23ae28870e731157feeee14d7808a8b34a6 /lapi.c
parent9e029f98b9b4859aa30305a0c36e560a085c02a9 (diff)
downloadlua-ef37c87e9333d825838d421e4652076b70c83a72.tar.gz
lua-ef37c87e9333d825838d421e4652076b70c83a72.tar.bz2
lua-ef37c87e9333d825838d421e4652076b70c83a72.zip
no more 'globalbag'
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/lapi.c b/lapi.c
index aa6bd324..068b536e 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 1.7 1997/11/21 19:00:46 roberto Exp roberto $ 2** $Id: lapi.c,v 1.8 1997/11/26 18:53:45 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -191,12 +191,6 @@ lua_Object lua_createtable (void)
191} 191}
192 192
193 193
194lua_Object lua_globalbag (void)
195{
196 return put_luaObject(&L->globalbag);
197}
198
199
200lua_Object lua_getglobal (char *name) 194lua_Object lua_getglobal (char *name)
201{ 195{
202 luaD_checkstack(2); /* may need that to call T.M. */ 196 luaD_checkstack(2); /* may need that to call T.M. */