aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-05 20:37:26 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-05 20:37:26 -0200
commit6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000 (patch)
tree90ec001ce7f309f6fdb1148ceef3682f51073a24 /lstate.h
parentd070506a255cc7cc33842a7bb97e1405cfb048aa (diff)
downloadlua-6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000.tar.gz
lua-6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000.tar.bz2
lua-6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000.zip
comments
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index c7528824..a798f6b6 100644
--- a/lstate.h
+++ b/lstate.h
@@ -92,8 +92,8 @@ typedef struct CallInfo {
92 StkId base; /* base for called function */ 92 StkId base; /* base for called function */
93 const Instruction *savedpc; 93 const Instruction *savedpc;
94 StkId top; /* top for this function (when it's a Lua function) */ 94 StkId top; /* top for this function (when it's a Lua function) */
95 const Instruction **pc; 95 const Instruction **pc; /* points to `pc' variable in `luaV_execute' */
96 StkId *pb; 96 StkId *pb; /* points to `base' variable in `luaV_execute' */
97 /* extra information for line tracing */ 97 /* extra information for line tracing */
98 int lastpc; /* last pc traced */ 98 int lastpc; /* last pc traced */
99 int line; /* current line */ 99 int line; /* current line */