From 5be517602e5334573297fe8d421a92eb0184ce86 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Fri, 14 Jan 2005 12:19:42 -0200 Subject: no more generational collector (and no more `noinc' mode) --- lapi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index 9212b7d1..f82b00dc 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.24 2005/01/04 15:55:12 roberto Exp roberto $ +** $Id: lapi.c,v 2.25 2005/01/07 19:53:32 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -872,9 +872,9 @@ LUA_API int lua_gc (lua_State *L, int what, int data) { g->gcpace = data; break; } - case LUA_GCSETINCMODE: { - res = g->incgc; - g->incgc = data; + case LUA_GCSETSTEPMUL: { + res = g->gcstepmul; + g->gcstepmul = data; break; } default: res = -1; /* invalid option */ -- cgit v1.2.3-55-g6feb