| 261 | |
| 262 | |
| 263 | static void setarrayvector (lua_State *L, Table *t, int size) { |
| 264 | int i; |
| 265 | luaM_reallocvector(L, t->array, t->sizearray, size, TValue); |
| 266 | for (i=t->sizearray; i<size; i++) |
| 267 | setnilvalue(&t->array[i]); |
| 268 | t->sizearray = size; |
| 269 | } |
| 270 | |
| 271 | |
| 272 | static void setnodevector (lua_State *L, Table *t, int size) { |