[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: lua_pushtable
- From: Mark Hamburg <mhamburg@...>
- Date: Thu, 03 Jun 2004 23:23:40 -0700
Where did the table come from?
Mark
on 6/3/04 11:24 PM, Nodir Temirhodzhaev at tnodir@land.ru wrote:
> Please add to Lua 5.1 (with lua_pushthread):
>
> lua/src/lapi.c:
> =======
> LUA_API void lua_pushtable (lua_State *L, const void *t) {
> lua_lock(L);
> sethvalue(L->top, t);
> api_incr_top(L);
> lua_unlock(L);
> }
> =======