diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-28 10:39:22 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-28 10:39:22 -0200 |
commit | 39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8 (patch) | |
tree | c82e8d808f7b26d1c81fb0d2a652c1f51a4e5752 /lobject.h | |
parent | 5482992dec286ca800ffab539b0f81eddaa2665b (diff) | |
download | lua-39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8.tar.gz lua-39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8.tar.bz2 lua-39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8.zip |
details
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.8 1997/11/03 20:45:23 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.9 1997/11/19 17:29:23 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 | */ |
@@ -131,7 +131,7 @@ typedef struct LocVar { | |||
131 | #define fvalue(o) ((o)->value.f) | 131 | #define fvalue(o) ((o)->value.f) |
132 | #define tfvalue(o) ((o)->value.tf) | 132 | #define tfvalue(o) ((o)->value.tf) |
133 | 133 | ||
134 | #define protovalue(o) (&(o)->value.cl->consts[0]) | 134 | #define protovalue(o) ((o)->value.cl->consts) |
135 | 135 | ||
136 | /* | 136 | /* |
137 | ** Closures | 137 | ** Closures |