diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ | 2 | ** $Id: lobject.h,v 1.124 2002/02/08 22: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 | */ |
@@ -147,11 +147,11 @@ typedef struct Proto { | |||
147 | int sizelineinfo; /* size of `lineinfo' */ | 147 | int sizelineinfo; /* size of `lineinfo' */ |
148 | int sizelocvars; | 148 | int sizelocvars; |
149 | int lineDefined; | 149 | int lineDefined; |
150 | short nupvalues; | 150 | lu_byte nupvalues; |
151 | short numparams; | 151 | lu_byte numparams; |
152 | short is_vararg; | 152 | lu_byte is_vararg; |
153 | short maxstacksize; | 153 | lu_byte maxstacksize; |
154 | short marked; | 154 | lu_byte marked; |
155 | } Proto; | 155 | } Proto; |
156 | 156 | ||
157 | 157 | ||