lua-users home
lua-l archive

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


>> LUA_ERRERR means an error during error handling.
>
>Ah, thanks.  How should this be handled?  What happens in the case of 
>such a thing?  I am writing to ada 95, and am mapping erros to 
>exceptions.  If this occurs, will Lua panic or will it be returned?

This means that your error handler raised an error. Apart from that, everything
is ok; the application can carry on.

>What do the lib loading functions do on error?  They return ints, is it 
>simply success or failure or do they return specific error codes?

What "lib loading functions"?

Do you mean loadlib? If so, see the comments in src/lib/loadlib.c.
--lhf