diff options
Diffstat (limited to 'lfunc.c')
-rw-r--r-- | lfunc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.c,v 2.9 2005/02/18 12:40:02 roberto Exp roberto $ | 2 | ** $Id: lfunc.c,v 2.10 2005/04/29 13:54:05 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 | */ |
@@ -131,7 +131,8 @@ Proto *luaF_newproto (lua_State *L) { | |||
131 | f->lineinfo = NULL; | 131 | f->lineinfo = NULL; |
132 | f->sizelocvars = 0; | 132 | f->sizelocvars = 0; |
133 | f->locvars = NULL; | 133 | f->locvars = NULL; |
134 | f->lineDefined = 0; | 134 | f->linedefined = 0; |
135 | f->lastlinedefined = 0; | ||
135 | f->source = NULL; | 136 | f->source = NULL; |
136 | return f; | 137 | return f; |
137 | } | 138 | } |