aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lapi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index eab12cac..f59430a7 100644
--- a/lapi.c
+++ b/lapi.c
@@ -888,9 +888,8 @@ LUA_API void lua_settable (lua_State *L, int idx) {
888 api_checkpop(L, 2); 888 api_checkpop(L, 2);
889 t = index2value(L, idx); 889 t = index2value(L, idx);
890 luaV_fastset(t, s2v(L->top.p - 2), s2v(L->top.p - 1), hres, luaH_pset); 890 luaV_fastset(t, s2v(L->top.p - 2), s2v(L->top.p - 1), hres, luaH_pset);
891 if (hres == HOK) { 891 if (hres == HOK)
892 luaV_finishfastset(L, t, s2v(L->top.p - 1)); 892 luaV_finishfastset(L, t, s2v(L->top.p - 1));
893 }
894 else 893 else
895 luaV_finishset(L, t, s2v(L->top.p - 2), s2v(L->top.p - 1), hres); 894 luaV_finishset(L, t, s2v(L->top.p - 2), s2v(L->top.p - 1), hres);
896 L->top.p -= 2; /* pop index and value */ 895 L->top.p -= 2; /* pop index and value */