mirror of https://github.com/lua/lua
small changes (preparing for new module of pre-compilation)
This commit is contained in:
parent
b04f88d581
commit
30dd3a2dbc
4
func.c
4
func.c
|
@ -19,8 +19,12 @@ static int maxcurrvars = 0;
|
||||||
*/
|
*/
|
||||||
void luaI_initTFunc (TFunc *f)
|
void luaI_initTFunc (TFunc *f)
|
||||||
{
|
{
|
||||||
|
f->next = NULL;
|
||||||
|
f->marked = 0;
|
||||||
|
f->size = 0;
|
||||||
f->code = NULL;
|
f->code = NULL;
|
||||||
f->lineDefined = 0;
|
f->lineDefined = 0;
|
||||||
|
f->fileName = NULL;
|
||||||
f->locvars = NULL;
|
f->locvars = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue