aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-03-04 18:23:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-03-04 18:23:39 -0300
commit5a8bb00df443dfdb5708689f32c64e90f2557bf8 (patch)
treef0328ef79978ce9bd8ceb63fdef2299b74c87490 /lgc.c
parent677188de8aa0c4ed49a3db570f0c9ee7cd641ddc (diff)
downloadlua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.gz
lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.bz2
lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.zip
storing chunk "sources" instead of "filenames".
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index b321e76c..5686a296 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 1.21 1999/02/25 15:16:26 roberto Exp roberto $ 2** $Id: lgc.c,v 1.22 1999/02/26 15:48:55 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -162,7 +162,7 @@ static void protomark (TProtoFunc *f) {
162 if (!f->head.marked) { 162 if (!f->head.marked) {
163 int i; 163 int i;
164 f->head.marked = 1; 164 f->head.marked = 1;
165 strmark(f->fileName); 165 strmark(f->source);
166 for (i=0; i<f->nconsts; i++) 166 for (i=0; i<f->nconsts; i++)
167 markobject(&f->consts[i]); 167 markobject(&f->consts[i]);
168 } 168 }