From 770954510fd04912b2d84db0bd68dac62eaa5c5a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 28 Jun 2001 11:57:17 -0300 Subject: rename of `kproto' to `p' --- ldebug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ldebug.c') diff --git a/ldebug.c b/ldebug.c index f07e6dc3..473d63f5 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 1.83 2001/06/15 20:36:57 roberto Exp roberto $ +** $Id: ldebug.c,v 1.84 2001/06/26 13:20:45 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -450,8 +450,8 @@ static Instruction luaG_symbexec (const Proto *pt, int lastpc, int reg) { break; } case OP_CLOSURE: { - check(b < pt->sizekproto); - checkreg(pt, a + pt->kproto[b]->nupvalues - 1); + check(b < pt->sizep); + checkreg(pt, a + pt->p[b]->nupvalues - 1); break; } default: break; -- cgit v1.2.3-55-g6feb