detail (comment)

This commit is contained in:
Roberto Ierusalimschy
2010-05-17 15:30:27 -03:00
parent 12c764ed1e
commit 3811e23b32

View File

@@ -1,5 +1,5 @@
/* /*
** $Id: lauxlib.c,v 1.209 2010/05/10 15:25:02 roberto Exp roberto $ ** $Id: lauxlib.c,v 1.210 2010/05/12 14:09:20 roberto Exp roberto $
** Auxiliary functions for building Lua libraries ** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@@ -665,7 +665,7 @@ LUALIB_API void luaL_openlib (lua_State *L, const char *libname,
lua_insert(L, -(nup + 1)); /* move library table to below upvalues */ lua_insert(L, -(nup + 1)); /* move library table to below upvalues */
} }
luaL_checkstack(L, nup, "too many upvalues"); luaL_checkstack(L, nup, "too many upvalues");
for (; l && l->name; l++) { /* else fill the table with given functions */ for (; l && l->name; l++) { /* fill the table with given functions */
int i; int i;
for (i = 0; i < nup; i++) /* copy upvalues to the top */ for (i = 0; i < nup; i++) /* copy upvalues to the top */
lua_pushvalue(L, -nup); lua_pushvalue(L, -nup);