summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-19 16:23:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-19 16:23:57 -0300
commitf59e6a93c0ad38a27a420e51abf8f13d962446b5 (patch)
tree0b707f93322ac5ac126e4e2558c5349c2dd0989e
parent6683f83b51bf87cad0980712955c959c4c128e24 (diff)
downloadlua-github-f59e6a93c0ad38a27a420e51abf8f13d962446b5.tar.gz
opening functions must be exported!v5.4-w2
-rw-r--r--luaconf.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/luaconf.h b/luaconf.h
index f1ca51f5..9cddb263 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
/*
-** $Id: luaconf.h,v 1.269 2018/06/15 15:49:28 roberto Exp roberto $
+** $Id: luaconf.h,v 1.270 2018/06/18 12:51:05 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -255,12 +255,10 @@
/*
-** More often than not the libs go together with the core;
-** Functions from the auxiliary library must be exported,
-** but opening functions do not.
+** More often than not the libs go together with the core.
*/
#define LUALIB_API LUA_API
-#define LUAMOD_API LUAI_FUNC
+#define LUAMOD_API LUA_API
/*