diff options
author | daurnimator <quae@daurnimator.com> | 2018-03-29 02:48:27 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-03-29 02:53:10 +1100 |
commit | ae6ac83055d2ad8577a6a43236b123fcbf81225b (patch) | |
tree | 5dee5c7eef2f617a282bfa736a33d5715a1acaf1 /src/lua.js | |
parent | c0308f2401694031b1b09cbd5d8fb3f9312054f2 (diff) | |
download | fengari-ae6ac83055d2ad8577a6a43236b123fcbf81225b.tar.gz fengari-ae6ac83055d2ad8577a6a43236b123fcbf81225b.tar.bz2 fengari-ae6ac83055d2ad8577a6a43236b123fcbf81225b.zip |
src/{defs,luaconf}.js: Move path config to expected location in luaconf.js
Had to move some export statements around, as there is now a circular dependency
Diffstat (limited to 'src/lua.js')
-rw-r--r-- | src/lua.js | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -67,17 +67,6 @@ module.exports.LUA_VERSION_RELEASE = defs.LUA_VERSION_RELEASE; module.exports.LUA_YIELD = defs.thread_status.LUA_YIELD; module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; -module.exports.LUA_CDIR = defs.LUA_CDIR; -module.exports.LUA_EXEC_DIR = defs.LUA_EXEC_DIR; -module.exports.LUA_JSPATH_DEFAULT = defs.LUA_JSPATH_DEFAULT; -module.exports.LUA_LDIR = defs.LUA_LDIR; -module.exports.LUA_PATH_DEFAULT = defs.LUA_PATH_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_arith = lapi.lua_arith; module.exports.lua_atpanic = lapi.lua_atpanic; |