Updated NonStandardLuaLibs (markdown)

Florian Nücke 2014-03-04 06:00:46 -08:00
parent c87742f2cc
commit 2058f1741a

@ -8,7 +8,7 @@ The [original functions](http://www.lua.org/manual/5.2/manual.html#6.1) from the
- `collectgarbage` is *not* available.
- `dofile` and `loadfile` have been reimplemented to load files from mounted file system components (they use [[the filesystem API|API/Filesystem]] / reimplemented `io` library).
- `load` can only be used to load text, no binary/compiled code.
- `load` can only be used to load text, no binary/compiled code by default. Note that bytecode loading can be enabled in the config, but is really not recommended, since it is a *major security risk*.
- `print` has been reimplemented to use the reimplemented `io.stdout` which uses `term.write`.
Coroutine Manipulation