diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-04 18:23:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-04 18:23:39 -0300 |
commit | 5a8bb00df443dfdb5708689f32c64e90f2557bf8 (patch) | |
tree | f0328ef79978ce9bd8ceb63fdef2299b74c87490 /lfunc.c | |
parent | 677188de8aa0c4ed49a3db570f0c9ee7cd641ddc (diff) | |
download | lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.gz lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.bz2 lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.zip |
storing chunk "sources" instead of "filenames".
Diffstat (limited to 'lfunc.c')
-rw-r--r-- | lfunc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.c,v 1.8 1997/12/15 16:17:20 roberto Exp roberto $ | 2 | ** $Id: lfunc.c,v 1.9 1998/06/19 16:14:09 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 | */ |
@@ -31,7 +31,7 @@ TProtoFunc *luaF_newproto (void) | |||
31 | TProtoFunc *f = luaM_new(TProtoFunc); | 31 | TProtoFunc *f = luaM_new(TProtoFunc); |
32 | f->code = NULL; | 32 | f->code = NULL; |
33 | f->lineDefined = 0; | 33 | f->lineDefined = 0; |
34 | f->fileName = NULL; | 34 | f->source = NULL; |
35 | f->consts = NULL; | 35 | f->consts = NULL; |
36 | f->nconsts = 0; | 36 | f->nconsts = 0; |
37 | f->locvars = NULL; | 37 | f->locvars = NULL; |