diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.2 2004/03/23 17:02:58 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 | */ |
@@ -70,8 +70,9 @@ typedef struct stringtable { | |||
70 | ** informations about a call | 70 | ** informations about a call |
71 | */ | 71 | */ |
72 | typedef struct CallInfo { | 72 | typedef struct CallInfo { |
73 | StkId base; /* base for called function */ | 73 | StkId base; /* base for this function */ |
74 | StkId top; /* top for this function */ | 74 | StkId top; /* top for this function */ |
75 | int nresults; /* expected number of results from this function */ | ||
75 | union { | 76 | union { |
76 | struct { /* for Lua functions */ | 77 | struct { /* for Lua functions */ |
77 | const Instruction *savedpc; | 78 | const Instruction *savedpc; |