diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-08-30 10:44:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-08-30 10:44:28 -0300 |
commit | 96f77142374da8a4a7d4e5e8afd559fbaf0430e8 (patch) | |
tree | 5514ffbf943c95bd5eed14b096a370fefe6586e6 /lfunc.c | |
parent | 05545816057cfdc54bb58199388a2d8878ae5542 (diff) | |
download | lua-96f77142374da8a4a7d4e5e8afd559fbaf0430e8.tar.gz lua-96f77142374da8a4a7d4e5e8afd559fbaf0430e8.tar.bz2 lua-96f77142374da8a4a7d4e5e8afd559fbaf0430e8.zip |
Field 'Proto.is_vararg' uses only one bit
So that the other bits can be used for other purposes.
Diffstat (limited to 'lfunc.c')
-rw-r--r-- | lfunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -253,7 +253,7 @@ Proto *luaF_newproto (lua_State *L) { | |||
253 | f->upvalues = NULL; | 253 | f->upvalues = NULL; |
254 | f->sizeupvalues = 0; | 254 | f->sizeupvalues = 0; |
255 | f->numparams = 0; | 255 | f->numparams = 0; |
256 | f->is_vararg = 0; | 256 | f->flag = 0; |
257 | f->maxstacksize = 0; | 257 | f->maxstacksize = 0; |
258 | f->locvars = NULL; | 258 | f->locvars = NULL; |
259 | f->sizelocvars = 0; | 259 | f->sizelocvars = 0; |