diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-02-05 20:37:26 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-02-05 20:37:26 -0200 |
commit | 6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000 (patch) | |
tree | 90ec001ce7f309f6fdb1148ceef3682f51073a24 /lstate.h | |
parent | d070506a255cc7cc33842a7bb97e1405cfb048aa (diff) | |
download | lua-6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000.tar.gz lua-6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000.tar.bz2 lua-6bb5cb1cbd7a0f0f99242c09ecec7d081cb42000.zip |
comments
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |