From 91f34fb05caa9590cd19a986e865a93361b1c398 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 8 May 2000 16:37:10 -0300 Subject: lua.h should not use names without prefix lua_ (`TObject', for instance) --- lobject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index c4e605c6..a02cc047 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.61 2000/04/25 16:55:09 roberto Exp roberto $ +** $Id: lobject.h,v 1.62 2000/05/08 19:32:53 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -79,7 +79,7 @@ typedef union { #define avalue(o) ((o)->value.a) -typedef struct TObject { +typedef struct lua_TObject { lua_Type ttype; Value value; } TObject; -- cgit v1.2.3-55-g6feb