diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.107 2001/06/26 13:20:45 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.108 2001/06/28 14:48:44 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 | */ |
@@ -124,8 +124,8 @@ typedef union Udata { | |||
124 | typedef struct Proto { | 124 | typedef struct Proto { |
125 | TObject *k; /* constants used by the function */ | 125 | TObject *k; /* constants used by the function */ |
126 | int sizek; /* size of `k' */ | 126 | int sizek; /* size of `k' */ |
127 | struct Proto **kproto; /* functions defined inside the function */ | 127 | struct Proto **p; /* functions defined inside the function */ |
128 | int sizekproto; /* size of `kproto' */ | 128 | int sizep; /* size of `p' */ |
129 | Instruction *code; | 129 | Instruction *code; |
130 | int sizecode; | 130 | int sizecode; |
131 | short nupvalues; | 131 | short nupvalues; |