diff options
author | 2015-12-31 15:32:56 -0500 | |
---|---|---|
committer | 2015-12-31 15:32:56 -0500 | |
commit | 54c582a21e21ef893f2acd5e49415c8aa5eb0276 (patch) | |
tree | 08ba81b7db17fec8be72cfc7613ee027d5ca8c5c | |
parent | b5829e37c6049836e069955b70dd08f43f73400d (diff) | |
download | textadept-54c582a21e21ef893f2acd5e49415c8aa5eb0276.tar.gz textadept-54c582a21e21ef893f2acd5e49415c8aa5eb0276.zip |
Textadept has been using Lua 5.3 for some time now; doc/manual.md
-rw-r--r-- | doc/manual.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/manual.md b/doc/manual.md index 38ae50ac..d2584f39 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1386,7 +1386,7 @@ API documentation HTML files. ## Lua Configuration -Textadept contains its own copy of [Lua 5.2][] which has the same configuration +Textadept contains its own copy of [Lua 5.3][] which has the same configuration (*luaconf.h*) as vanilla Lua with the following exceptions: * `TA_LUA_PATH` and `TA_LUA_CPATH` replace the `LUA_PATH` and `LUA_CPATH` @@ -1395,13 +1395,14 @@ Textadept contains its own copy of [Lua 5.2][] which has the same configuration * `LUA_PATH` and `LUA_CPATH` do not have "./?.lua" and "./?.so" in them. * No Lua 5.1 compatibility flags are set. -[Lua 5.2]: http://www.lua.org/manual/5.2/ +[Lua 5.3]: http://www.lua.org/manual/5.3/ ### LuaJIT Even though Textadept runs with [LuaJIT][], LuaJIT does not fully support -Lua 5.2. Therefore, try to write your modules and scripts to be compatible with -both versions. For the most part, LuaJIT only lacks Lua 5.2's new `_ENV`. +Lua 5.3. Therefore, try to write your modules and scripts to be compatible with +both versions. For the most part, LuaJIT only lacks Lua 5.2's `_ENV` and Lua +5.3's new bitwise operators and some new integer operations. [LuaJIT]: http://luajit.org |