|
> pcall looks like pure Lua, and therefore I assumed that you could > yield across it. Does pcall really look like pure Lua? Lua is like C in this respect: it has NO builtin functions. So, all functions provided by the standard Lua library are C functions. --lhf