diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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 { | |||
154 | typedef struct TProtoFunc { | 154 | typedef 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; |