From 6c7334a9ac4b424a4fd52bfeb4d674bc7cfa4eb3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 10 Apr 2002 09:11:07 -0300 Subject: line trace uses `savedpc' to save last `pc' seen --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index a7ec7e2c..3bb3fa5d 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.80 2002/03/25 17:47:14 roberto Exp roberto $ +** $Id: lstate.h,v 1.81 2002/03/26 20:46:10 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -91,7 +91,6 @@ typedef struct CallInfo { StkId top; /* top for this function (when it's a Lua function) */ const Instruction **pc; /* points to `pc' variable in `luaV_execute' */ StkId *pb; /* points to `base' variable in `luaV_execute' */ - int lastpc; /* last pc traced */ int yield_results; } CallInfo; -- cgit v1.2.3-55-g6feb