From 1f691a4fcd32b706c79e4c8cbff17c6ae985bc34 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 28 Jan 2000 14:53:00 -0200 Subject: renaming of some opcodes and fields --- lobject.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 0c2253f3..aeaac517 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.43 1999/12/29 16:31:15 roberto Exp roberto $ +** $Id: lobject.h,v 1.44 2000/01/25 13:57:18 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -154,12 +154,12 @@ typedef struct TaggedString { typedef struct TProtoFunc { struct TProtoFunc *next; int marked; - struct TaggedString **strcnst; - int nstrcnst; - real *numcnst; - int nnumcnst; - struct TProtoFunc **protocnst; - int nprotocnst; + struct TaggedString **kstr; /* strings used by the function */ + int nkstr; /* size of `kstr' */ + real *knum; /* real numbers used by the function */ + int nknum; /* size of `knum' */ + struct TProtoFunc **kproto; /* functions defined inside the function */ + int nkproto; /* size of `kproto' */ Byte *code; /* ends with opcode ENDCODE */ int lineDefined; TaggedString *source; -- cgit v1.2.3-55-g6feb