diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -460,7 +460,7 @@ typedef struct Upvaldesc { | |||
460 | TString *name; /* upvalue name (for debug information) */ | 460 | TString *name; /* upvalue name (for debug information) */ |
461 | lu_byte instack; /* whether it is in stack (register) */ | 461 | lu_byte instack; /* whether it is in stack (register) */ |
462 | lu_byte idx; /* index of upvalue (in stack or in outer function's list) */ | 462 | lu_byte idx; /* index of upvalue (in stack or in outer function's list) */ |
463 | lu_byte ro; /* true if upvalue is read-only (const) */ | 463 | lu_byte kind; /* kind of corresponding variable */ |
464 | } Upvaldesc; | 464 | } Upvaldesc; |
465 | 465 | ||
466 | 466 | ||