diff options
Diffstat (limited to 'ldo.c')
| -rw-r--r-- | ldo.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -32,10 +32,10 @@ | |||
| 32 | 32 | ||
| 33 | /* chain list of long jump buffers */ | 33 | /* chain list of long jump buffers */ |
| 34 | struct lua_longjmp { | 34 | struct lua_longjmp { |
| 35 | jmp_buf b; | ||
| 36 | struct lua_longjmp *previous; | 35 | struct lua_longjmp *previous; |
| 37 | CallInfo *ci; /* index of call info of active function that set protection */ | 36 | CallInfo *ci; /* index of call info of active function that set protection */ |
| 38 | StkId top; /* top stack when protection was set */ | 37 | StkId top; /* top stack when protection was set */ |
| 38 | jmp_buf b; | ||
| 39 | int allowhooks; /* `allowhook' state when protection was set */ | 39 | int allowhooks; /* `allowhook' state when protection was set */ |
| 40 | volatile int status; /* error code */ | 40 | volatile int status; /* error code */ |
| 41 | }; | 41 | }; |
