diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-10 14:31:30 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-10 14:31:30 -0200 |
commit | 162b66624d6868e71010ef3988b482fc811def34 (patch) | |
tree | aebf5f5c036172b4aeec6874aff1002eb8be9e9b /luaconf.h | |
parent | e791f025c0c59b0a428fab604a7e2251cca568f5 (diff) | |
download | lua-162b66624d6868e71010ef3988b482fc811def34.tar.gz lua-162b66624d6868e71010ef3988b482fc811def34.tar.bz2 lua-162b66624d6868e71010ef3988b482fc811def34.zip |
no more `lua_userinit' macro
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.23 2005/01/04 12:46:04 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.24 2005/01/07 20:00:33 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -108,16 +108,6 @@ | |||
108 | #define PROGNAME "lua" | 108 | #define PROGNAME "lua" |
109 | 109 | ||
110 | 110 | ||
111 | /* | ||
112 | ** this macro allows you to open other libraries when starting the | ||
113 | ** stand-alone interpreter | ||
114 | */ | ||
115 | #define lua_userinit(L) luaopen_stdlibs(L) | ||
116 | /* | ||
117 | ** #define lua_userinit(L) { int luaopen_mylibs(lua_State *L); \ | ||
118 | ** luaopen_stdlibs(L); luaopen_mylibs(L); } | ||
119 | */ | ||
120 | |||
121 | 111 | ||
122 | 112 | ||
123 | /* | 113 | /* |