Browse Source

detail (comment)

Roberto Ierusalimschy 15 years ago
parent
commit
3811e23b32
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lauxlib.c

+ 2 - 2
lauxlib.c

@@ -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
 ** 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 */
   }
   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;
     for (i = 0; i < nup; i++)  /* copy upvalues to the top */
       lua_pushvalue(L, -nup);