From ad0704e40cc7b3135fedc6d40a522addb039e090 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 7 Nov 2017 11:25:26 -0200 Subject: back to 'CallInfo' (no gains with its removal) --- lua.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index fe97e8a6..2d8ff838 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.337 2017/11/02 11:28:56 roberto Exp roberto $ +** $Id: lua.h,v 1.337 2017/11/02 11:28:56 roberto Exp $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -456,8 +456,7 @@ struct lua_Debug { char istailcall; /* (t) */ char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ - int i_actf; /* active function */ - lua_State *i_actL; /* where active function is active */ + struct CallInfo *i_ci; /* active function */ }; /* }====================================================================== */ -- cgit v1.2.3-55-g6feb