mirror of
https://github.com/lua/lua
synced 2026-09-26 16:17:11 +03:00
Field 'Proto.is_vararg' uses only one bit
So that the other bits can be used for other purposes.
This commit is contained in:
parent
0554581605
commit
96f7714237
8 changed files with 20 additions and 13 deletions
2
ldump.c
2
ldump.c
|
|
@ -224,7 +224,7 @@ static void dumpFunction (DumpState *D, const Proto *f) {
|
|||
dumpInt(D, f->linedefined);
|
||||
dumpInt(D, f->lastlinedefined);
|
||||
dumpByte(D, f->numparams);
|
||||
dumpByte(D, f->is_vararg);
|
||||
dumpByte(D, f->flag);
|
||||
dumpByte(D, f->maxstacksize);
|
||||
dumpCode(D, f);
|
||||
dumpConstants(D, f);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue