aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-10 09:11:07 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-10 09:11:07 -0300
commit6c7334a9ac4b424a4fd52bfeb4d674bc7cfa4eb3 (patch)
treef6e3f9fb0bdbf3169426798b12391f8355d52432 /lstate.h
parent8e1e61860643baeb443efcdbf51bc25b0c006a88 (diff)
downloadlua-6c7334a9ac4b424a4fd52bfeb4d674bc7cfa4eb3.tar.gz
lua-6c7334a9ac4b424a4fd52bfeb4d674bc7cfa4eb3.tar.bz2
lua-6c7334a9ac4b424a4fd52bfeb4d674bc7cfa4eb3.zip
line trace uses `savedpc' to save last `pc' seen
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index a7ec7e2c..3bb3fa5d 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.80 2002/03/25 17:47:14 roberto Exp roberto $ 2** $Id: lstate.h,v 1.81 2002/03/26 20:46:10 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -91,7 +91,6 @@ typedef struct CallInfo {
91 StkId top; /* top for this function (when it's a Lua function) */ 91 StkId top; /* top for this function (when it's a Lua function) */
92 const Instruction **pc; /* points to `pc' variable in `luaV_execute' */ 92 const Instruction **pc; /* points to `pc' variable in `luaV_execute' */
93 StkId *pb; /* points to `base' variable in `luaV_execute' */ 93 StkId *pb; /* points to `base' variable in `luaV_execute' */
94 int lastpc; /* last pc traced */
95 int yield_results; 94 int yield_results;
96} CallInfo; 95} CallInfo;
97 96