aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-28 14:53:00 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-28 14:53:00 -0200
commit1f691a4fcd32b706c79e4c8cbff17c6ae985bc34 (patch)
treecbc0e4fafd5fc1367db57f2b2fc8dff5876f1076 /lobject.h
parentd6b9f49aaf735f7b17bd0dcafde65ba0f8c57bc7 (diff)
downloadlua-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.tar.gz
lua-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.tar.bz2
lua-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.zip
renaming of some opcodes and fields
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/lobject.h b/lobject.h
index 0c2253f3..aeaac517 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.43 1999/12/29 16:31:15 roberto Exp roberto $ 2** $Id: lobject.h,v 1.44 2000/01/25 13:57:18 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -154,12 +154,12 @@ typedef struct TaggedString {
154typedef struct TProtoFunc { 154typedef struct TProtoFunc {
155 struct TProtoFunc *next; 155 struct TProtoFunc *next;
156 int marked; 156 int marked;
157 struct TaggedString **strcnst; 157 struct TaggedString **kstr; /* strings used by the function */
158 int nstrcnst; 158 int nkstr; /* size of `kstr' */
159 real *numcnst; 159 real *knum; /* real numbers used by the function */
160 int nnumcnst; 160 int nknum; /* size of `knum' */
161 struct TProtoFunc **protocnst; 161 struct TProtoFunc **kproto; /* functions defined inside the function */
162 int nprotocnst; 162 int nkproto; /* size of `kproto' */
163 Byte *code; /* ends with opcode ENDCODE */ 163 Byte *code; /* ends with opcode ENDCODE */
164 int lineDefined; 164 int lineDefined;
165 TaggedString *source; 165 TaggedString *source;