aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lbaselib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbaselib.c b/lbaselib.c
index c8b9bd01..b6d212c3 100644
--- a/lbaselib.c
+++ b/lbaselib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbaselib.c,v 1.268 2011/11/09 19:38:00 roberto Exp roberto $ 2** $Id: lbaselib.c,v 1.269 2011/11/14 17:10:24 roberto Exp roberto $
3** Basic library 3** Basic library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -160,7 +160,7 @@ static int luaB_rawset (lua_State *L) {
160static int luaB_collectgarbage (lua_State *L) { 160static int luaB_collectgarbage (lua_State *L) {
161 static const char *const opts[] = {"stop", "restart", "collect", 161 static const char *const opts[] = {"stop", "restart", "collect",
162 "count", "step", "setpause", "setstepmul", 162 "count", "step", "setpause", "setstepmul",
163 "setmajorinc", "isrunning", "gen", "inc", NULL}; 163 "setmajorinc", "isrunning", "generational", "incremental", NULL};
164 static const int optsnum[] = {LUA_GCSTOP, LUA_GCRESTART, LUA_GCCOLLECT, 164 static const int optsnum[] = {LUA_GCSTOP, LUA_GCRESTART, LUA_GCCOLLECT,
165 LUA_GCCOUNT, LUA_GCSTEP, LUA_GCSETPAUSE, LUA_GCSETSTEPMUL, 165 LUA_GCCOUNT, LUA_GCSTEP, LUA_GCSETPAUSE, LUA_GCSETSTEPMUL,
166 LUA_GCSETMAJORINC, LUA_GCISRUNNING, LUA_GCGEN, LUA_GCINC}; 166 LUA_GCSETMAJORINC, LUA_GCISRUNNING, LUA_GCGEN, LUA_GCINC};