From c1418616ab4c508e1b534f892839a863b71de86c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Fri, 14 Mar 2014 01:46:13 -0700 Subject: [PATCH] Updated NonStandardLuaLibs (markdown) --- NonStandardLuaLibs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NonStandardLuaLibs.md b/NonStandardLuaLibs.md index 7253f32..93cbb25 100644 --- a/NonStandardLuaLibs.md +++ b/NonStandardLuaLibs.md @@ -55,7 +55,7 @@ For the most part these should be *functionally* equivalent to the standard Lua - `io.open` does *not* support the `+` modes, i.e. it only supports `r`, `w`, `a`, `rb`, `wb` and `ab`. Binary mode in this implementation determines whether to use UTF-8 aware string functions or not, when reading a number of chars (e.g. via `f:read(42)`). - `io.stdin` reads data using `term.read`. - `io.stdout` writes using `term.write`. -- `io.stderr` equals `io.stdout`, it is just an alias. +- `io.stderr` also writes using `term.write`, but tries to do so in a red color, if supported by the primary GPU and Screen. - `io.read` does *not* support the `*n` format at this point. Operating System Facilities