lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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);
> }
> =======