diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-05-15 16:28:34 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-05-15 16:28:34 -0300 |
commit | a73da6112d4c6f20abf634cb68f89fe31fb9037c (patch) | |
tree | bc6406a5c8641a080ce58827c921447938913b3a /linit.c | |
parent | 6a5d87771fa28c8337c5e10f4a0c4364dbeb37e9 (diff) | |
download | lua-a73da6112d4c6f20abf634cb68f89fe31fb9037c.tar.gz lua-a73da6112d4c6f20abf634cb68f89fe31fb9037c.tar.bz2 lua-a73da6112d4c6f20abf634cb68f89fe31fb9037c.zip |
deprecated library throws an error if called (instead of silently
not loading itself)
Diffstat (limited to 'linit.c')
-rw-r--r-- | linit.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: linit.c,v 1.32 2011/04/08 19:17:36 roberto Exp roberto $ | 2 | ** $Id: linit.c,v 1.33 2014/02/06 17:32:33 roberto Exp roberto $ |
3 | ** Initialization of libraries for lua.c and other clients | 3 | ** Initialization of libraries for lua.c and other clients |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -34,10 +34,12 @@ static const luaL_Reg loadedlibs[] = { | |||
34 | {LUA_IOLIBNAME, luaopen_io}, | 34 | {LUA_IOLIBNAME, luaopen_io}, |
35 | {LUA_OSLIBNAME, luaopen_os}, | 35 | {LUA_OSLIBNAME, luaopen_os}, |
36 | {LUA_STRLIBNAME, luaopen_string}, | 36 | {LUA_STRLIBNAME, luaopen_string}, |
37 | {LUA_UTF8LIBNAME, luaopen_utf8}, | ||
38 | {LUA_BITLIBNAME, luaopen_bit32}, | ||
39 | {LUA_MATHLIBNAME, luaopen_math}, | 37 | {LUA_MATHLIBNAME, luaopen_math}, |
40 | {LUA_DBLIBNAME, luaopen_debug}, | 38 | {LUA_DBLIBNAME, luaopen_debug}, |
39 | {LUA_UTF8LIBNAME, luaopen_utf8}, | ||
40 | #if defined(LUA_COMPAT_BITLIB) | ||
41 | {LUA_BITLIBNAME, luaopen_bit32}, | ||
42 | #endif | ||
41 | {NULL, NULL} | 43 | {NULL, NULL} |
42 | }; | 44 | }; |
43 | 45 | ||