aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-05-13 10:54:47 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-05-13 10:54:47 -0300
commit6d95de83c644da5f720cf468c38df9782f1c890d (patch)
tree734170c5082ae1e44ad9fe69d85b167fd4d07207 /lstate.h
parent5c8770f8969a73cf4ca503f54c2217f76de62e04 (diff)
downloadlua-6d95de83c644da5f720cf468c38df9782f1c890d.tar.gz
lua-6d95de83c644da5f720cf468c38df9782f1c890d.tar.bz2
lua-6d95de83c644da5f720cf468c38df9782f1c890d.zip
no more field 'base' in CallInfo (base is always equal to 'func + 1',
with old/new vararg implementation)
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 533d6ad6..d2dabc4d 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.139 2017/04/24 16:59:26 roberto Exp roberto $ 2** $Id: lstate.h,v 2.140 2017/05/04 13:32:01 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -96,7 +96,6 @@ typedef struct CallInfo {
96 struct CallInfo *previous, *next; /* dynamic call link */ 96 struct CallInfo *previous, *next; /* dynamic call link */
97 union { 97 union {
98 struct { /* only for Lua functions */ 98 struct { /* only for Lua functions */
99 StkId base; /* base for this function */
100 const Instruction *savedpc; 99 const Instruction *savedpc;
101 } l; 100 } l;
102 struct { /* only for C functions */ 101 struct { /* only for C functions */