lua-users home
lua-l archive

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


>You just forgot to copy "tostring".  It's used internally by print.
>So print tries to call nil and by thus raises an error.  And because
>you didn't have an _ERRORMESSAGE and _ALERT you don't see this error.

Yes, using globals() is tricky because some of the internals of Lua depends
on these global functions. The manual should be more explicit about this.
--lhf