move userdata to lua_Callbacks

This commit is contained in:
LoganDark 2021-11-07 13:44:41 -08:00
parent 2a26c09660
commit 150c92185e
No known key found for this signature in database
GPG key ID: B8C37CEDE1AC60EA
3 changed files with 2 additions and 3 deletions

View file

@ -356,6 +356,8 @@ struct lua_Callbacks
void (*debugstep)(lua_State* L, lua_Debug* ar); /* gets called after each instruction in single step mode */
void (*debuginterrupt)(lua_State* L, lua_Debug* ar); /* gets called when thread execution is interrupted by break in another thread */
void (*debugprotectederror)(lua_State* L); /* gets called when protected call results in an error */
void* userdata; /* arbitrary userdata pointer that is never overwritten by Luau */
};
LUA_API lua_Callbacks* lua_callbacks(lua_State* L);

View file

@ -181,7 +181,6 @@ lua_State* lua_newstate(lua_Alloc f, void* ud)
g->cb = lua_Callbacks();
g->gcstats = GCStats();
g->userdata = NULL;
if (luaD_rawrunprotected(L, f_luaopen, NULL) != 0)
{

View file

@ -189,8 +189,6 @@ typedef struct global_State
GCStats gcstats;
void* userdata;
} global_State;
// clang-format on