From 57f8414de1968b6f9f212140f2da14cba3b6dacb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 27 May 2009 14:11:27 -0300 Subject: small bug in 'luaV_concat' (L->top was left incorrect in some cases) --- lvm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index 2d68f406..0b45ca0d 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 2.7 2008/08/26 13:27:42 roberto Exp roberto $ +** $Id: lvm.h,v 2.8 2009/03/10 17:14:37 roberto Exp $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -34,6 +34,6 @@ LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val); LUAI_FUNC void luaV_finishOp (lua_State *L); LUAI_FUNC void luaV_execute (lua_State *L); -LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); +LUAI_FUNC void luaV_concat (lua_State *L, int total); #endif -- cgit v1.2.3-55-g6feb