lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 5d79c6684b185888319d46837394a0fbcfde921f
parent 3410dcd3750d5e2852ffce7cfc4bda76dd1c83c0
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 29 Apr 2010 18:42:09 -0300

removed commented-out debugging code

Diffstat:
Mltests.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/ltests.c b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.96 2010/04/19 16:38:25 roberto Exp roberto $ +** $Id: ltests.c,v 2.97 2010/04/29 17:33:51 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -367,8 +367,6 @@ static void checkgraylist (GCObject *l) { while (l) { lua_assert(isgray(l)); lua_assert(!testbit(l->gch.marked, GRAYBIT)); - //if (testbit(l->gch.marked, GRAYBIT)) - // printf("%s (%02x) %p\n", ttypename(l->gch.tt), l->gch.marked, l); l->gch.marked = l_setbit(l->gch.marked, GRAYBIT); switch (gch(l)->tt) { case LUA_TTABLE: l = gco2t(l)->gclist; break;