mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-25 14:52:28 +00:00
This reverts commit 55a15c204e
.
This commit is contained in:
parent
6bbb44c165
commit
2bc0901ce3
16 changed files with 20 additions and 557 deletions
2
third_party/lua/lstate.h
vendored
2
third_party/lua/lstate.h
vendored
|
@ -351,7 +351,6 @@ union GCUnion {
|
|||
struct Udata u;
|
||||
union Closure cl;
|
||||
struct Table h;
|
||||
struct Array a;
|
||||
struct Proto p;
|
||||
struct lua_State th; /* thread */
|
||||
struct UpVal upv;
|
||||
|
@ -374,7 +373,6 @@ union GCUnion {
|
|||
#define gco2cl(o) \
|
||||
check_exp(novariant((o)->tt) == LUA_TFUNCTION, &((cast_u(o))->cl))
|
||||
#define gco2t(o) check_exp((o)->tt == LUA_VTABLE, &((cast_u(o))->h))
|
||||
#define gco2a(o) check_exp((o)->tt == LUA_TARRAY, &((cast_u(o))->a))
|
||||
#define gco2p(o) check_exp((o)->tt == LUA_VPROTO, &((cast_u(o))->p))
|
||||
#define gco2th(o) check_exp((o)->tt == LUA_VTHREAD, &((cast_u(o))->th))
|
||||
#define gco2upv(o) check_exp((o)->tt == LUA_VUPVAL, &((cast_u(o))->upv))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue