diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-05-30 16:00:31 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-05-30 16:00:31 -0300 |
commit | 7e30900def8b01df28464477b943aab65f5637c6 (patch) | |
tree | 16ee1b11410589335195ce493fda60cd4212832a /lobject.h | |
parent | f63d7753b89e479b20d6d78d05d1039c2ccd2e06 (diff) | |
download | lua-7e30900def8b01df28464477b943aab65f5637c6.tar.gz lua-7e30900def8b01df28464477b943aab65f5637c6.tar.bz2 lua-7e30900def8b01df28464477b943aab65f5637c6.zip |
better field name
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||