aboutsummaryrefslogtreecommitdiff
path: root/src/lua.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua.js')
-rw-r--r--src/lua.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lua.js b/src/lua.js
index 62abcf6..fb8abe4 100644
--- a/src/lua.js
+++ b/src/lua.js
@@ -81,18 +81,17 @@ module.exports.lua_Debug = defs.lua_Debug;
module.exports.lua_upvalueindex = defs.lua_upvalueindex;
module.exports.to_jsstring = defs.to_jsstring;
module.exports.to_luastring = defs.to_luastring;
-module.exports.LUA_VDIR = defs.LUA_VDIR;
-module.exports.LUA_LDIR = defs.LUA_LDIR;
module.exports.LUA_CDIR = defs.LUA_CDIR;
-module.exports.LUA_SHRDIR = defs.LUA_SHRDIR;
-module.exports.LUA_PATH_DEFAULT = defs.LUA_PATH_DEFAULT;
module.exports.LUA_CPATH_DEFAULT = defs.LUA_CPATH_DEFAULT;
-module.exports.LUA_ROOT = defs.LUA_ROOT;
+module.exports.LUA_EXEC_DIR = defs.LUA_EXEC_DIR;
module.exports.LUA_LDIR = defs.LUA_LDIR;
-module.exports.LUA_CDIR = defs.LUA_CDIR;
module.exports.LUA_PATH_DEFAULT = defs.LUA_PATH_DEFAULT;
-module.exports.LUA_CPATH_DEFAULT = defs.LUA_CPATH_DEFAULT;
-
+module.exports.LUA_PATH_MARK = defs.LUA_PATH_MARK;
+module.exports.LUA_PATH_SEP = defs.LUA_PATH_SEP;
+module.exports.LUA_ROOT = defs.LUA_ROOT;
+module.exports.LUA_SHRDIR = defs.LUA_SHRDIR;
+module.exports.LUA_VDIR = defs.LUA_VDIR;
+module.exports.LUA_DIRSEP = defs.LUA_DIRSEP;
module.exports.lua_absindex = lapi.lua_absindex;
module.exports.lua_atpanic = lapi.lua_atpanic;
module.exports.lua_call = lapi.lua_call;
@@ -166,6 +165,7 @@ module.exports.lua_rawget = lapi.lua_rawget;
module.exports.lua_rawgeti = lapi.lua_rawgeti;
module.exports.lua_rawgetp = lapi.lua_rawgetp;
module.exports.lua_rawlen = lapi.lua_rawlen;
+module.exports.lua_rawseti = lapi.lua_rawseti;
module.exports.lua_rawset = lapi.lua_rawset;
module.exports.lua_rawsetp = lapi.lua_rawsetp;
module.exports.lua_remove = lapi.lua_remove;