aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 86bc3601..b2987429 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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
253typedef struct UpVal { 253typedef 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;