From 9863223fbf512d903a1677c861e4beb4f8feda4d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 28 May 1996 18:07:32 -0300 Subject: first version of vararg facility (plus new function "call"). --- table.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'table.c') diff --git a/table.c b/table.c index 56f7fb82..c16924cc 100644 --- a/table.c +++ b/table.c @@ -3,7 +3,7 @@ ** Module to control static tables */ -char *rcs_table="$Id: table.c,v 2.53 1996/04/29 18:53:53 roberto Exp roberto $"; +char *rcs_table="$Id: table.c,v 2.54 1996/05/06 14:29:35 roberto Exp roberto $"; #include "mem.h" #include "opcode.h" @@ -39,6 +39,7 @@ static struct { lua_CFunction func; } int_funcs[] = { {"assert", luaI_assert}, + {"call", luaI_call}, {"dofile", lua_internaldofile}, {"dostring", lua_internaldostring}, {"error", luaI_error}, -- cgit v1.2.3-55-g6feb