summaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-11-22 13:56:04 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-11-22 13:56:04 -0200
commit35296e1fde705b3ac8356a4f4ce426497cf7b64c (patch)
tree59b369957490dd472f04576afe4a225e399c2995 /lparser.h
parentbb0185b196773b878f0bf6b6c6a4a01dbf8c2b83 (diff)
downloadlua-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lparser.h b/lparser.h
index 8b070b0e..3d6bd978 100644
--- a/lparser.h
+++ b/lparser.h
@@ -78,7 +78,7 @@ typedef struct expdesc {
78 78
79/* description of active local variable */ 79/* description of active local variable */
80typedef struct Vardesc { 80typedef 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