From 4fe11ae232e37045feaaf08d72a5414fca463c1c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 1 May 2014 15:21:32 -0300 Subject: 'lua_getuservalue' returns type of user value --- lapi.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index 27f51220..843e5606 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.207 2014/04/30 16:48:44 roberto Exp roberto $ +** $Id: lapi.c,v 2.208 2014/05/01 18:18:06 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -735,7 +735,7 @@ LUA_API int lua_getmetatable (lua_State *L, int objindex) { } -LUA_API void lua_getuservalue (lua_State *L, int idx) { +LUA_API int lua_getuservalue (lua_State *L, int idx) { StkId o; lua_lock(L); o = index2addr(L, idx); @@ -743,6 +743,7 @@ LUA_API void lua_getuservalue (lua_State *L, int idx) { getuservalue(L, rawuvalue(o), L->top); api_incr_top(L); lua_unlock(L); + return ttnov(L->top - 1); } -- cgit v1.2.3-55-g6feb