aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-07-02 08:38:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-07-02 08:38:13 -0300
commit7192afafeeb1a96b3de60af90a72cd8762b09d94 (patch)
treed1e7e061822f755c33cc497d98ea451c7e7e32e8 /loadlib.c
parenta139e2e003e0b62b7d34eeda20dd2354e74885f9 (diff)
downloadlua-7192afafeeb1a96b3de60af90a72cd8762b09d94.tar.gz
lua-7192afafeeb1a96b3de60af90a72cd8762b09d94.tar.bz2
lua-7192afafeeb1a96b3de60af90a72cd8762b09d94.zip
new module policy: C modules do not create globals and do not register
themselves with 'require' (let 'require' do its work); new auxiliary functions luaL_newlib/luaL_newlibtable/luaL_setfuncs/luaL_requiref. Old luaL_register will be deprecated.
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loadlib.c b/loadlib.c
index bb517801..712fcfef 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.85 2010/06/18 17:23:02 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.86 2010/06/30 17:40:27 roberto Exp roberto $
3** Dynamic library loader for Lua 3** Dynamic library loader for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5** 5**
@@ -616,7 +616,7 @@ LUAMOD_API int luaopen_package (lua_State *L) {
616 lua_pushcfunction(L, gctm); 616 lua_pushcfunction(L, gctm);
617 lua_setfield(L, -2, "__gc"); 617 lua_setfield(L, -2, "__gc");
618 /* create `package' table */ 618 /* create `package' table */
619 luaL_register(L, LUA_LOADLIBNAME, pk_funcs); 619 luaL_newlib(L, pk_funcs);
620 /* create `loaders' table */ 620 /* create `loaders' table */
621 lua_createtable(L, sizeof(loaders)/sizeof(loaders[0]) - 1, 0); 621 lua_createtable(L, sizeof(loaders)/sizeof(loaders[0]) - 1, 0);
622 /* fill it with pre-defined loaders */ 622 /* fill it with pre-defined loaders */