lua-users home
lua-l archive

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


>From lua-l@tecgraf.puc-rio.br  Wed Jun  7 20:29:03 2000
>From: "Terence Martin" <odat@telus.net>
>
>I'm not sure if it's by design or oversight, but there isn't
>a compatability macro for lua_setdebug like there is for all
>of the other functions. Not one that I can see anyways.
>Perhaps I just missed seeing a comment somewhere that
>explains that?

This is by design. The idea is that debugging is already a complicated process
and so it's better that everything is clear. Thus, the explicit need for
a lua_State in the debug API and no compatibility macros.
--lhf