aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-28 10:39:22 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-28 10:39:22 -0200
commit39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8 (patch)
treec82e8d808f7b26d1c81fb0d2a652c1f51a4e5752 /lobject.h
parent5482992dec286ca800ffab539b0f81eddaa2665b (diff)
downloadlua-39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8.tar.gz
lua-39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8.tar.bz2
lua-39fd5bb9b04a6a7633ddf4aa838e4909a7a0abc8.zip
details
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 45e27995..1be2b8f2 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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