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' --- lobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index b0af0e5f..9a19ea8e 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.107 2001/06/26 13:20:45 roberto Exp roberto $ +** $Id: lobject.h,v 1.108 2001/06/28 14:48:44 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -124,8 +124,8 @@ typedef union Udata { typedef struct Proto { TObject *k; /* constants used by the function */ int sizek; /* size of `k' */ - struct Proto **kproto; /* functions defined inside the function */ - int sizekproto; /* size of `kproto' */ + struct Proto **p; /* functions defined inside the function */ + int sizep; /* size of `p' */ Instruction *code; int sizecode; short nupvalues; -- cgit v1.2.3-55-g6feb