From a4e1230f95223f2106cf0e118426ba91f1017d89 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 15 Mar 2004 18:04:33 -0300 Subject: better way to control open upvalues --- lobject.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index f9968a09..ee23f3db 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.2 2004/02/16 19:09:52 roberto Exp roberto $ +** $Id: lobject.h,v 2.3 2004/02/20 16:01:05 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -263,7 +263,6 @@ typedef struct LocVar { typedef struct UpVal { CommonHeader; - GCObject *gclist; TValue *v; /* points to stack or to its own value */ TValue value; /* the value (when closed) */ } UpVal; -- cgit v1.2.3-55-g6feb