aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldo.c b/ldo.c
index 6f850cbd..ec39419a 100644
--- a/ldo.c
+++ b/ldo.c
@@ -32,10 +32,10 @@
32 32
33/* chain list of long jump buffers */ 33/* chain list of long jump buffers */
34struct lua_longjmp { 34struct 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};