diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-11-22 13:56:04 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-11-22 13:56:04 -0200 |
commit | 35296e1fde705b3ac8356a4f4ce426497cf7b64c (patch) | |
tree | 59b369957490dd472f04576afe4a225e399c2995 /lparser.h | |
parent | bb0185b196773b878f0bf6b6c6a4a01dbf8c2b83 (diff) | |
download | lua-35296e1fde705b3ac8356a4f4ce426497cf7b64c.tar.gz lua-35296e1fde705b3ac8356a4f4ce426497cf7b64c.tar.bz2 lua-35296e1fde705b3ac8356a4f4ce426497cf7b64c.zip |
Details
comments and other janitorial work.
Diffstat (limited to 'lparser.h')
-rw-r--r-- | lparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ typedef struct expdesc { | |||
78 | 78 | ||
79 | /* description of active local variable */ | 79 | /* description of active local variable */ |
80 | typedef struct Vardesc { | 80 | typedef struct Vardesc { |
81 | short idx; /* variable index in stack */ | 81 | short idx; /* index of the variable in the Proto's 'locvars' array */ |
82 | } Vardesc; | 82 | } Vardesc; |
83 | 83 | ||
84 | 84 | ||