diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-03-15 18:04:33 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-03-15 18:04:33 -0300 |
| commit | a4e1230f95223f2106cf0e118426ba91f1017d89 (patch) | |
| tree | bc6b67ae14a3381498a203e715d48e8d059b6fef /lobject.h | |
| parent | 9804467eeb9836bc147adffee411b21e6257da6b (diff) | |
| download | lua-a4e1230f95223f2106cf0e118426ba91f1017d89.tar.gz lua-a4e1230f95223f2106cf0e118426ba91f1017d89.tar.bz2 lua-a4e1230f95223f2106cf0e118426ba91f1017d89.zip | |
better way to control open upvalues
Diffstat (limited to 'lobject.h')
| -rw-r--r-- | lobject.h | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lobject.h,v 2.2 2004/02/16 19:09:52 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.3 2004/02/20 16:01:05 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 | */ |
| @@ -263,7 +263,6 @@ typedef struct LocVar { | |||
| 263 | 263 | ||
| 264 | typedef struct UpVal { | 264 | typedef struct UpVal { |
| 265 | CommonHeader; | 265 | CommonHeader; |
| 266 | GCObject *gclist; | ||
| 267 | TValue *v; /* points to stack or to its own value */ | 266 | TValue *v; /* points to stack or to its own value */ |
| 268 | TValue value; /* the value (when closed) */ | 267 | TValue value; /* the value (when closed) */ |
| 269 | } UpVal; | 268 | } UpVal; |
