commit 6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000
parent d070506a255cc7cc33842a7bb97e1405cfb048aa
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Tue, 5 Feb 2002 20:37:04 -0200
comments
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lstate.h b/lstate.h
@@ -92,8 +92,8 @@ typedef struct CallInfo {
StkId base; /* base for called function */
const Instruction *savedpc;
StkId top; /* top for this function (when it's a Lua function) */
- const Instruction **pc;
- StkId *pb;
+ const Instruction **pc; /* points to `pc' variable in `luaV_execute' */
+ StkId *pb; /* points to `base' variable in `luaV_execute' */
/* extra information for line tracing */
int lastpc; /* last pc traced */
int line; /* current line */