aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ltests.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ltests.c b/ltests.c
index 05139cec..d302b97b 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 2.96 2010/04/19 16:38:25 roberto Exp roberto $ 2** $Id: ltests.c,v 2.97 2010/04/29 17:33:51 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -367,8 +367,6 @@ static void checkgraylist (GCObject *l) {
367 while (l) { 367 while (l) {
368 lua_assert(isgray(l)); 368 lua_assert(isgray(l));
369 lua_assert(!testbit(l->gch.marked, GRAYBIT)); 369 lua_assert(!testbit(l->gch.marked, GRAYBIT));
370 //if (testbit(l->gch.marked, GRAYBIT))
371 // printf("%s (%02x) %p\n", ttypename(l->gch.tt), l->gch.marked, l);
372 l->gch.marked = l_setbit(l->gch.marked, GRAYBIT); 370 l->gch.marked = l_setbit(l->gch.marked, GRAYBIT);
373 switch (gch(l)->tt) { 371 switch (gch(l)->tt) {
374 case LUA_TTABLE: l = gco2t(l)->gclist; break; 372 case LUA_TTABLE: l = gco2t(l)->gclist; break;