From acdb0b741e31adebfa4f608f8bf23e65fa68d741 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 27 Dec 1999 15:33:22 -0200 Subject: comments. --- lgc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lgc.c') diff --git a/lgc.c b/lgc.c index c119c29e..6fc73942 100644 --- a/lgc.c +++ b/lgc.c @@ -1,5 +1,5 @@ /* -** $Id: lgc.c,v 1.37 1999/12/21 18:04:41 roberto Exp roberto $ +** $Id: lgc.c,v 1.38 1999/12/23 18:19:57 roberto Exp roberto $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -181,7 +181,7 @@ static void clear_global_list (lua_State *L, int limit) { ** with limit=MAX_INT, that means all elements. */ static void collectstring (lua_State *L, int limit) { - TObject o; /* to call userdata 'gc' tag method */ + TObject o; /* to call userdata `gc' tag method */ int i; ttype(&o) = LUA_T_USERDATA; clear_global_list(L, limit); @@ -254,7 +254,7 @@ void luaC_collect (lua_State *L, int all) { long lua_collectgarbage (lua_State *L, long limit) { - unsigned long recovered = L->nblocks; /* to subtract nblocks after gc */ + unsigned long recovered = L->nblocks; /* to subtract `nblocks' after gc */ markall(L); luaR_invalidaterefs(L); luaC_collect(L, 0); -- cgit v1.2.3-55-g6feb