some reformatting (3 of 4)

This commit is contained in:
PatR
2024-09-05 15:55:24 -07:00
parent aa043f0ddf
commit cc1066b1ff
19 changed files with 244 additions and 169 deletions

View File

@@ -72,7 +72,8 @@ l_obj_gc(lua_State *L)
staticfn struct _lua_obj *
l_obj_push(lua_State *L, struct obj *otmp)
{
struct _lua_obj *lo = (struct _lua_obj *) lua_newuserdata(L, sizeof(struct _lua_obj));
struct _lua_obj *lo
= (struct _lua_obj *) lua_newuserdata(L, sizeof (struct _lua_obj));
luaL_getmetatable(L, "obj");
lua_setmetatable(L, -2);