no more 'globalbag'

This commit is contained in:
Roberto Ierusalimschy
1997-11-27 13:59:25 -02:00
parent 9e029f98b9
commit ef37c87e93
5 changed files with 5 additions and 17 deletions

3
lgc.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: lgc.c,v 1.7 1997/11/03 20:45:23 roberto Exp roberto $
** $Id: lgc.c,v 1.8 1997/11/19 17:29:23 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/
@@ -241,7 +241,6 @@ static void markall (void)
luaD_travstack(markobject); /* mark stack objects */
globalmark(); /* mark global variable values and names */
travlock(); /* mark locked objects */
markobject(&L->globalbag); /* mark elements in global bag */
luaT_travtagmethods(markobject); /* mark fallbacks */
}