From e64e20ac8136b6cf53601127fc5c69310d644eeb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 2 May 2018 15:17:59 -0300 Subject: minimizing the code ran by 'vmfetch' + no more 'vra' (the code is simpler without 'vra' and conversion is a no-op) --- ldebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldebug.h') diff --git a/ldebug.h b/ldebug.h index e8652d84..97a7a00e 100644 --- a/ldebug.h +++ b/ldebug.h @@ -1,5 +1,5 @@ /* -** $Id: ldebug.h,v 2.15 2017/06/27 11:35:31 roberto Exp roberto $ +** $Id: ldebug.h,v 2.16 2018/01/28 15:13:26 roberto Exp roberto $ ** Auxiliary functions from Debug Interface module ** See Copyright Notice in lua.h */ @@ -37,7 +37,7 @@ LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg, TString *src, int line); LUAI_FUNC l_noret luaG_errormsg (lua_State *L); -LUAI_FUNC void luaG_traceexec (lua_State *L); +LUAI_FUNC int luaG_traceexec (lua_State *L, const Instruction *pc); #endif -- cgit v1.2.3-55-g6feb