From d29ce757376dd309f097e8ff30dd2a9b14567575 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 25 Nov 1999 16:58:51 -0200 Subject: new signature for function luaD_call (old luaD_calln) --- ldo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldo.h') diff --git a/ldo.h b/ldo.h index 9adc6aba..d08adbb5 100644 --- a/ldo.h +++ b/ldo.h @@ -1,5 +1,5 @@ /* -** $Id: ldo.h,v 1.9 1999/10/14 19:46:57 roberto Exp roberto $ +** $Id: ldo.h,v 1.10 1999/11/22 13:12:07 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -35,7 +35,7 @@ void luaD_adjusttop (lua_State *L, StkId newtop); void luaD_openstack (lua_State *L, int nelems); void luaD_lineHook (lua_State *L, int line); void luaD_callHook (lua_State *L, StkId base, const TProtoFunc *tf, int isreturn); -void luaD_calln (lua_State *L, int nArgs, int nResults); +void luaD_call (lua_State *L, TObject *func, int nResults); void luaD_callTM (lua_State *L, const TObject *f, int nParams, int nResults); int luaD_protectedrun (lua_State *L); void luaD_gcIM (lua_State *L, const TObject *o); -- cgit v1.2.3-55-g6feb