diff options
-rw-r--r-- | doc/11_Scripting.md | 1 | ||||
-rw-r--r-- | init.lua | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/doc/11_Scripting.md b/doc/11_Scripting.md index 3c546f1a..abd4e313 100644 --- a/doc/11_Scripting.md +++ b/doc/11_Scripting.md @@ -44,6 +44,7 @@ as vanilla Lua with the following exceptions: * `TA_LUA_PATH` and `TA_LUA_CPATH` are the environment variable used in place of the usual `LUA_PATH` and `LUA_CPATH`. * `LUA_ROOT` is `/usr/` in Linux systems instead of `/usr/local/`. +* `LUA_PATH` and `LUA_CPATH` do not have `./?.lua` and `./?.so` in them. * All compatibility flags for Lua 5.1 are turned off. (`LUA_COMPAT_UNPACK`, `LUA_COMPAT_LOADERS`, `LUA_COMPAT_LOG10`, `LUA_COMPAT_LOADSTRING`, `LUA_COMPAT_MAXN`, and `LUA_COMPAT_MODULE`.) @@ -6,6 +6,8 @@ package.path = table.concat({ _HOME..'/modules/?.lua', _HOME..'/modules/?/init.lua', package.path }, ';'); +local so = not WIN32 and '/?.so;' or '/?.dll;' +package.cpath = _USERHOME..so.._USERHOME..'/modules'..so..package.cpath local user_init, exists = _USERHOME..'/init.lua', lfs.attributes local ok, err = pcall(dofile, user_init) |