aboutsummaryrefslogtreecommitdiff
path: root/src/lj_obj.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r--src/lj_obj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h
index 5eaa7145..4baa62d8 100644
--- a/src/lj_obj.h
+++ b/src/lj_obj.h
@@ -525,8 +525,8 @@ struct lua_State {
525 GCRef gclist; /* GC chain. */ 525 GCRef gclist; /* GC chain. */
526 TValue *base; /* Base of currently executing function. */ 526 TValue *base; /* Base of currently executing function. */
527 TValue *top; /* First free slot in the stack. */ 527 TValue *top; /* First free slot in the stack. */
528 TValue *maxstack; /* Last free slot in the stack. */ 528 MRef maxstack; /* Last free slot in the stack. */
529 TValue *stack; /* Stack base. */ 529 MRef stack; /* Stack base. */
530 GCRef openupval; /* List of open upvalues in the stack. */ 530 GCRef openupval; /* List of open upvalues in the stack. */
531 GCRef env; /* Thread environment (table of globals). */ 531 GCRef env; /* Thread environment (table of globals). */
532 void *cframe; /* End of C stack frame chain. */ 532 void *cframe; /* End of C stack frame chain. */