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. --- func.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'func.c') diff --git a/func.c b/func.c index 61cd614a..f6055041 100644 --- a/func.c +++ b/func.c @@ -83,7 +83,7 @@ Long luaI_funccollector (void) void lua_funcinfo (lua_Object func, char **filename, int *linedefined) { - Object *f = luaI_Address(func); + TObject *f = luaI_Address(func); if (f->ttype == LUA_T_MARK || f->ttype == LUA_T_FUNCTION) { *filename = f->value.tf->fileName; -- cgit v1.2.3-55-g6feb