From c33b1728aeb7dfeec4013562660e07d32697aa6b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 18 Jun 2020 11:07:27 -0300 Subject: Details Added as incompatibility, in the manual, the extra return of 'io.lines'. --- lundump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lundump.c') diff --git a/lundump.c b/lundump.c index 77ba1955..4243678a 100644 --- a/lundump.c +++ b/lundump.c @@ -26,7 +26,7 @@ #if !defined(luai_verifycode) -#define luai_verifycode(L,b,f) /* empty */ +#define luai_verifycode(L,f) /* empty */ #endif @@ -317,7 +317,7 @@ LClosure *luaU_undump(lua_State *L, ZIO *Z, const char *name) { luaC_objbarrier(L, cl, cl->p); loadFunction(&S, cl->p, NULL); lua_assert(cl->nupvalues == cl->p->sizeupvalues); - luai_verifycode(L, buff, cl->p); + luai_verifycode(L, cl->p); return cl; } -- cgit v1.2.3-55-g6feb