lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Would it be permissible, then, for Lua to preserve this undefined
> status, instead of defining it (as an error)?

I think there is some confusion in this discussion. io.open does check
its mode. io.popen does not (at least currently): It passes its mode
untouched to the system's 'popen'. (And io.open does accept 'b',
following ANSI C.)

-- Roberto