aboutsummaryrefslogtreecommitdiff
path: root/lfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lfunc.c')
-rw-r--r--lfunc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lfunc.c b/lfunc.c
index e42bb64e..3b8dfd21 100644
--- a/lfunc.c
+++ b/lfunc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.c,v 1.39 2001/02/01 17:40:48 roberto Exp roberto $ 2** $Id: lfunc.c,v 1.40 2001/02/09 20:22:29 roberto Exp roberto $
3** Auxiliary functions to manipulate prototypes and closures 3** Auxiliary functions to manipulate prototypes and closures
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -37,6 +37,7 @@ Proto *luaF_newproto (lua_State *L) {
37 f->sizekproto = 0; 37 f->sizekproto = 0;
38 f->code = NULL; 38 f->code = NULL;
39 f->sizecode = 0; 39 f->sizecode = 0;
40 f->nupvalues = 0;
40 f->numparams = 0; 41 f->numparams = 0;
41 f->is_vararg = 0; 42 f->is_vararg = 0;
42 f->maxstacksize = 0; 43 f->maxstacksize = 0;