From 6d95de83c644da5f720cf468c38df9782f1c890d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 13 May 2017 10:54:47 -0300 Subject: no more field 'base' in CallInfo (base is always equal to 'func + 1', with old/new vararg implementation) --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 533d6ad6..d2dabc4d 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.139 2017/04/24 16:59:26 roberto Exp roberto $ +** $Id: lstate.h,v 2.140 2017/05/04 13:32:01 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -96,7 +96,6 @@ typedef struct CallInfo { struct CallInfo *previous, *next; /* dynamic call link */ union { struct { /* only for Lua functions */ - StkId base; /* base for this function */ const Instruction *savedpc; } l; struct { /* only for C functions */ -- cgit v1.2.3-55-g6feb