aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-31 18:02:55 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-31 18:02:55 -0300
commitebdd4e84514cdb81de9569dda796c58c344025bb (patch)
treea49dd740d9b1245c255cc8de6b8f12c21fbf9a8f /lvm.c
parent9a21e81907e49b79ec44677660acf9e35ad308bb (diff)
downloadlua-ebdd4e84514cdb81de9569dda796c58c344025bb.tar.gz
lua-ebdd4e84514cdb81de9569dda796c58c344025bb.tar.bz2
lua-ebdd4e84514cdb81de9569dda796c58c344025bb.zip
`call' doesn't use pack anymore
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index fb7998f4..a2aa456e 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.131 2000/08/29 14:48:16 roberto Exp roberto $ 2** $Id: lvm.c,v 1.132 2000/08/31 14:08:27 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -313,7 +313,7 @@ static void strconc (lua_State *L, int total, StkId top) {
313} 313}
314 314
315 315
316void luaV_pack (lua_State *L, StkId firstelem) { 316static void luaV_pack (lua_State *L, StkId firstelem) {
317 int i; 317 int i;
318 Hash *htab = luaH_new(L, 0); 318 Hash *htab = luaH_new(L, 0);
319 for (i=0; firstelem+i<L->top; i++) 319 for (i=0; firstelem+i<L->top; i++)