diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.160 2003/04/28 19:26:16 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.161 2003/08/27 21:01: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 | */ |
@@ -252,6 +252,7 @@ typedef struct LocVar { | |||
252 | 252 | ||
253 | typedef struct UpVal { | 253 | typedef struct UpVal { |
254 | CommonHeader; | 254 | CommonHeader; |
255 | GCObject *gclist; | ||
255 | TObject *v; /* points to stack or to its own value */ | 256 | TObject *v; /* points to stack or to its own value */ |
256 | TObject value; /* the value (when closed) */ | 257 | TObject value; /* the value (when closed) */ |
257 | } UpVal; | 258 | } UpVal; |