| 295 | |
| 296 | |
| 297 | static void setarrayvector (lua_State *L, Table *t, int size) { |
| 298 | int i; |
| 299 | luaM_reallocvector(L, t->array, t->sizearray, size, TValue); |
| 300 | for (i=t->sizearray; i<size; i++) |
| 301 | setnilvalue(&t->array[i]); |
| 302 | t->sizearray = size; |
| 303 | } |
| 304 | |
| 305 | |
| 306 | static void setnodevector (lua_State *L, Table *t, int size) { |