| 268 | |
| 269 | |
| 270 | static void setarrayvector (lua_State *L, Table *t, int size) { |
| 271 | int i; |
| 272 | luaM_reallocvector(L, t->array, t->sizearray, size, TValue); |
| 273 | for (i=t->sizearray; i<size; i++) |
| 274 | setnilvalue(&t->array[i]); |
| 275 | t->sizearray = size; |
| 276 | } |
| 277 | |
| 278 | |
| 279 | static void setnodevector (lua_State *L, Table *t, int size) { |