"coroutine.current" -> "running" (compatible with "running" status)

This commit is contained in:
Roberto Ierusalimschy
2005-02-28 14:24:41 -03:00
parent 5eeff89f32
commit dcabf721f8

View File

@@ -1,5 +1,5 @@
/* /*
** $Id: lbaselib.c,v 1.167 2005/02/18 12:40:02 roberto Exp roberto $ ** $Id: lbaselib.c,v 1.168 2005/02/23 17:30:22 roberto Exp roberto $
** Basic library ** Basic library
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@@ -576,7 +576,7 @@ static int luaB_costatus (lua_State *L) {
} }
static int luaB_cocurrent (lua_State *L) { static int luaB_corunning (lua_State *L) {
if (lua_pushthread(L)) if (lua_pushthread(L))
return 0; /* main thread is not a coroutine */ return 0; /* main thread is not a coroutine */
else else
@@ -590,7 +590,7 @@ static const luaL_reg co_funcs[] = {
{"resume", luaB_coresume}, {"resume", luaB_coresume},
{"yield", luaB_yield}, {"yield", luaB_yield},
{"status", luaB_costatus}, {"status", luaB_costatus},
{"current", luaB_cocurrent}, {"running", luaB_corunning},
{NULL, NULL} {NULL, NULL}
}; };