From f96497397addca22f22a6ba6eeabc906be43f16b Mon Sep 17 00:00:00 2001
From: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 29 Jun 2017 12:06:44 -0300
Subject: new type 'StackValue' for stack elements (we may want to put extra
 info there in the future)

---
 lundump.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'lundump.c')

diff --git a/lundump.c b/lundump.c
index f98c70e1..1f2f1a92 100644
--- a/lundump.c
+++ b/lundump.c
@@ -1,5 +1,5 @@
 /*
-** $Id: lundump.c,v 2.45 2017/06/27 11:35:31 roberto Exp roberto $
+** $Id: lundump.c,v 2.46 2017/06/27 14:21:12 roberto Exp roberto $
 ** load precompiled Lua chunks
 ** See Copyright Notice in lua.h
 */
@@ -283,7 +283,7 @@ LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) {
   S.Z = Z;
   checkHeader(&S);
   cl = luaF_newLclosure(L, LoadByte(&S));
-  setclLvalue(L, L->top, cl);
+  setclLvalue2s(L, L->top, cl);
   luaD_inctop(L);
   cl->p = luaF_newproto(L);
   LoadFunction(&S, cl->p, NULL);
-- 
cgit v1.2.3-55-g6feb