renaming of some opcodes and fields

This commit is contained in:
Roberto Ierusalimschy
2000-01-28 14:53:00 -02:00
parent d6b9f49aaf
commit 1f691a4fcd
7 changed files with 79 additions and 79 deletions

10
lgc.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: lgc.c,v 1.39 1999/12/27 17:33:22 roberto Exp roberto $
** $Id: lgc.c,v 1.40 2000/01/25 13:57:18 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/
@@ -33,10 +33,10 @@ static void protomark (lua_State *L, TProtoFunc *f) {
int i;
f->marked = 1;
strmark(L, f->source);
for (i=f->nstrcnst-1; i>=0; i--)
strmark(L, f->strcnst[i]);
for (i=f->nprotocnst-1; i>=0; i--)
protomark(L, f->protocnst[i]);
for (i=f->nkstr-1; i>=0; i--)
strmark(L, f->kstr[i]);
for (i=f->nkproto-1; i>=0; i--)
protomark(L, f->kproto[i]);
}
}