diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-19 16:23:57 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-19 16:23:57 -0300 |
commit | f59e6a93c0ad38a27a420e51abf8f13d962446b5 (patch) | |
tree | 0b707f93322ac5ac126e4e2558c5349c2dd0989e | |
parent | 6683f83b51bf87cad0980712955c959c4c128e24 (diff) | |
download | lua-f59e6a93c0ad38a27a420e51abf8f13d962446b5.tar.gz lua-f59e6a93c0ad38a27a420e51abf8f13d962446b5.tar.bz2 lua-f59e6a93c0ad38a27a420e51abf8f13d962446b5.zip |
opening functions must be exported!v5.4-w2
-rw-r--r-- | luaconf.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.269 2018/06/15 15:49:28 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.270 2018/06/18 12:51:05 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 | */ |
@@ -255,12 +255,10 @@ | |||
255 | 255 | ||
256 | 256 | ||
257 | /* | 257 | /* |
258 | ** More often than not the libs go together with the core; | 258 | ** More often than not the libs go together with the core. |
259 | ** Functions from the auxiliary library must be exported, | ||
260 | ** but opening functions do not. | ||
261 | */ | 259 | */ |
262 | #define LUALIB_API LUA_API | 260 | #define LUALIB_API LUA_API |
263 | #define LUAMOD_API LUAI_FUNC | 261 | #define LUAMOD_API LUA_API |
264 | 262 | ||
265 | 263 | ||
266 | /* | 264 | /* |