From ad5574c4c97af3ef863a6fb4b72142f3780103b2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 31 Mar 1997 11:02:58 -0300 Subject: "Object" renamed to "TObject" (Tagged Object), to avoid conflicts with pre-defined names in some C compilers. --- table.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'table.h') diff --git a/table.h b/table.h index 42d44c07..d03a5607 100644 --- a/table.h +++ b/table.h @@ -1,7 +1,7 @@ /* ** Module to control static tables ** TeCGraf - PUC-Rio -** $Id: table.h,v 2.21 1996/04/22 18:00:37 roberto Exp roberto $ +** $Id: table.h,v 2.22 1997/02/26 17:38:41 roberto Unstable roberto $ */ #ifndef table_h @@ -12,7 +12,7 @@ typedef struct { - Object object; + TObject object; TaggedString *varname; } Symbol; @@ -30,8 +30,8 @@ Word luaI_findconstant (TaggedString *t); Word luaI_findconstantbyname (char *name); void luaI_nextvar (void); TaggedString *luaI_createfixedstring (char *str); -int lua_markobject (Object *o); -int luaI_ismarked (Object *o); +int lua_markobject (TObject *o); +int luaI_ismarked (TObject *o); Long luaI_collectgarbage (void); void lua_pack (void); -- cgit v1.2.3-55-g6feb