aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-30 16:00:31 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-30 16:00:31 -0300
commit7e30900def8b01df28464477b943aab65f5637c6 (patch)
tree16ee1b11410589335195ce493fda60cd4212832a /lobject.h
parentf63d7753b89e479b20d6d78d05d1039c2ccd2e06 (diff)
downloadlua-7e30900def8b01df28464477b943aab65f5637c6.tar.gz
lua-7e30900def8b01df28464477b943aab65f5637c6.tar.bz2
lua-7e30900def8b01df28464477b943aab65f5637c6.zip
better field name
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lobject.h b/lobject.h
index f667a103..0a6d1093 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.64 2000/05/10 16:33:20 roberto Exp roberto $ 2** $Id: lobject.h,v 1.65 2000/05/24 13:54:49 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*/
@@ -144,8 +144,8 @@ typedef struct Closure {
144 lua_CFunction c; /* C functions */ 144 lua_CFunction c; /* C functions */
145 struct Proto *l; /* Lua functions */ 145 struct Proto *l; /* Lua functions */
146 } f; 146 } f;
147 int nelems; 147 int nupvalues;
148 TObject consts[1]; 148 TObject upvalue[1];
149} Closure; 149} Closure;
150 150
151 151