diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.101 2001/03/07 18:09:25 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.102 2001/04/11 14:42:41 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 | */ |
@@ -114,10 +114,8 @@ union L_UTString { | |||
114 | ** Function Prototypes | 114 | ** Function Prototypes |
115 | */ | 115 | */ |
116 | typedef struct Proto { | 116 | typedef struct Proto { |
117 | lua_Number *knum; /* numbers used by the function */ | 117 | TObject *k; /* constants used by the function */ |
118 | int sizeknum; /* size of `knum' */ | 118 | int sizek; /* size of `k' */ |
119 | struct TString **kstr; /* strings used by the function */ | ||
120 | int sizekstr; /* size of `kstr' */ | ||
121 | struct Proto **kproto; /* functions defined inside the function */ | 119 | struct Proto **kproto; /* functions defined inside the function */ |
122 | int sizekproto; /* size of `kproto' */ | 120 | int sizekproto; /* size of `kproto' */ |
123 | Instruction *code; | 121 | Instruction *code; |