diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.101 2014/02/18 13:39:37 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.102 2014/02/18 13:46:26 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 | */ |
@@ -69,9 +69,9 @@ typedef struct CallInfo { | |||
69 | const Instruction *savedpc; | 69 | const Instruction *savedpc; |
70 | } l; | 70 | } l; |
71 | struct { /* only for C functions */ | 71 | struct { /* only for C functions */ |
72 | int ctx; /* context info. in case of yields */ | ||
73 | lua_CFunction k; /* continuation in case of yields */ | 72 | lua_CFunction k; /* continuation in case of yields */ |
74 | ptrdiff_t old_errfunc; | 73 | ptrdiff_t old_errfunc; |
74 | int ctx; /* context info. in case of yields */ | ||
75 | lu_byte old_allowhook; | 75 | lu_byte old_allowhook; |
76 | lu_byte status; | 76 | lu_byte status; |
77 | } c; | 77 | } c; |