diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -136,10 +136,18 @@ typedef struct TValue { | |||
136 | 136 | ||
137 | 137 | ||
138 | /* | 138 | /* |
139 | ** Entries in the Lua stack | 139 | ** Entries in a Lua stack. Field 'tbclist' forms a list of all |
140 | ** to-be-closed variables active in this stack. Dummy entries are | ||
141 | ** used when the distance between two tbc variables does not fit | ||
142 | ** in an unsigned short. | ||
140 | */ | 143 | */ |
141 | typedef union StackValue { | 144 | typedef union StackValue { |
142 | TValue val; | 145 | TValue val; |
146 | struct { | ||
147 | TValuefields; | ||
148 | lu_byte isdummy; | ||
149 | unsigned short delta; | ||
150 | } tbclist; | ||
143 | } StackValue; | 151 | } StackValue; |
144 | 152 | ||
145 | 153 | ||