diff options
Diffstat (limited to 'lparser.h')
-rw-r--r-- | lparser.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -77,7 +77,7 @@ typedef struct expdesc { | |||
77 | } ind; | 77 | } ind; |
78 | struct { /* for local variables */ | 78 | struct { /* for local variables */ |
79 | lu_byte sidx; /* index in the stack */ | 79 | lu_byte sidx; /* index in the stack */ |
80 | unsigned short vidx; /* index in 'actvar.arr' */ | 80 | unsigned short vidx; /* compiler index (in 'actvar.arr') */ |
81 | } var; | 81 | } var; |
82 | } u; | 82 | } u; |
83 | int t; /* patch list of 'exit when true' */ | 83 | int t; /* patch list of 'exit when true' */ |
@@ -125,7 +125,7 @@ typedef struct Labellist { | |||
125 | 125 | ||
126 | /* dynamic structures used by the parser */ | 126 | /* dynamic structures used by the parser */ |
127 | typedef struct Dyndata { | 127 | typedef struct Dyndata { |
128 | struct { /* list of active local variables */ | 128 | struct { /* list of all active local variables */ |
129 | Vardesc *arr; | 129 | Vardesc *arr; |
130 | int n; | 130 | int n; |
131 | int size; | 131 | int size; |