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.64 2000/05/10 16:33:20 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.65 2000/05/24 13:54:49 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 | */ |
@@ -144,8 +144,8 @@ typedef struct Closure { | |||
144 | lua_CFunction c; /* C functions */ | 144 | lua_CFunction c; /* C functions */ |
145 | struct Proto *l; /* Lua functions */ | 145 | struct Proto *l; /* Lua functions */ |
146 | } f; | 146 | } f; |
147 | int nelems; | 147 | int nupvalues; |
148 | TObject consts[1]; | 148 | TObject upvalue[1]; |
149 | } Closure; | 149 | } Closure; |
150 | 150 | ||
151 | 151 | ||