Backed out changeset a3a4ed0d34f4 C99 is ok

This commit is contained in:
Kim Alvefur 2017-03-02 00:46:32 +01:00
parent cd37249852
commit 3bf3935e78

View file

@ -7,12 +7,11 @@ static int Lcreate_table(lua_State *L) {
}
static int Lpack(lua_State *L) {
int arg;
unsigned int n_args = lua_gettop(L);
lua_createtable(L, n_args, 1);
lua_insert(L, 1);
for(arg = n_args; arg >= 1; arg--) {
for(int arg = n_args; arg >= 1; arg--) {
lua_rawseti(L, 1, arg);
}