| 9501 | |
| 9502 | |
| 9503 | static void setarrayvector (lua_State *L, Table *t, int size) { |
| 9504 | int i; |
| 9505 | luaM_reallocvector(L, t->array, t->sizearray, size, TValue); |
| 9506 | for (i=t->sizearray; i<size; i++) |
| 9507 | setnilvalue(&t->array[i]); |
| 9508 | t->sizearray = size; |
| 9509 | } |
| 9510 | |
| 9511 | |
| 9512 | static void setnodevector (lua_State *L, Table *t, int size) { |