From 801aaf37b14a1fad5bb49c9a4200d25680152471 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 25 Mar 2002 14:47:14 -0300 Subject: simpler implementation for line information --- ldo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldo.h') diff --git a/ldo.h b/ldo.h index e25d9c09..2eb5f43b 100644 --- a/ldo.h +++ b/ldo.h @@ -1,5 +1,5 @@ /* -** $Id: ldo.h,v 1.40 2002/01/30 17:27:53 roberto Exp roberto $ +** $Id: ldo.h,v 1.41 2002/03/20 12:52:32 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -27,7 +27,7 @@ #define restorestack(L,n) ((TObject *)((char *)L->stack + (n))) -void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); +void luaD_lineHook (lua_State *L, int line); StkId luaD_precall (lua_State *L, StkId func); void luaD_call (lua_State *L, StkId func, int nResults); void luaD_poscall (lua_State *L, int wanted, StkId firstResult); -- cgit v1.2.3-55-g6feb