summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-03-15 18:04:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-03-15 18:04:33 -0300
commita4e1230f95223f2106cf0e118426ba91f1017d89 (patch)
treebc6b67ae14a3381498a203e715d48e8d059b6fef /lobject.h
parent9804467eeb9836bc147adffee411b21e6257da6b (diff)
downloadlua-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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index f9968a09..ee23f3db 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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
264typedef struct UpVal { 264typedef 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;