aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/11_Scripting.md
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-12-12 19:15:53 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2011-12-12 19:15:53 -0500
commit9f804f70df793dd2d50c0b14000ab83a6bc02b83 (patch)
tree12b826dc06b800d868854231d4db56d489697832 /doc/manual/11_Scripting.md
parent51bfd53e48d5310eb786069b758e0430129daf54 (diff)
downloadtextadept-9f804f70df793dd2d50c0b14000ab83a6bc02b83.tar.gz
textadept-9f804f70df793dd2d50c0b14000ab83a6bc02b83.zip
Remove 'module' and update LuaDoc comments appropriately.
Diffstat (limited to 'doc/manual/11_Scripting.md')
-rw-r--r--doc/manual/11_Scripting.md11
1 files changed, 4 insertions, 7 deletions
diff --git a/doc/manual/11_Scripting.md b/doc/manual/11_Scripting.md
index c73819a8..6be71b7b 100644
--- a/doc/manual/11_Scripting.md
+++ b/doc/manual/11_Scripting.md
@@ -17,18 +17,15 @@ examples since Textadept is mostly written in Lua.
## Lua Configuration
-[Lua 5.1](http://www.lua.org/manual/5.1/) is built into Textadept. It has the
+[Lua 5.2](http://www.lua.org/manual/5.2/) is built into Textadept. It has the
same configuration (`luaconf.h`) 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/`.
-* The `LUA_COMPAT_VARARG`, `LUA_COMPAT_MOD`, `LUA_COMPAT_GFIND`, and
- `LUA_COMPAT_OPENLIB` compatibility flags for Lua 5.0 are turned off.
-
-In addition, the [Lua Coco](http://coco.luajit.org/index.html) extension is used
-to allow coroutines to yield across the C call boundary, which would normally
-cause an error.
+* The `LUA_COMPAT_COMPAT`, `LUA_COMPAT_LOADERS`, `LUA_COMPAT_LOG10`,
+ `LUA_COMPAT_LOADSTRING`, and `LUA_COMPAT_MAXN` compatibility flags for Lua 5.1
+ are turned off.
## Scintilla