From de4e2305c512e23263842c82896bd0a96d960b6f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 7 Nov 1994 13:20:56 -0200 Subject: [PATCH] Type renamed to lua_Type --- opcode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opcode.h b/opcode.h index a8ec442e..72ea09d5 100644 --- a/opcode.h +++ b/opcode.h @@ -1,6 +1,6 @@ /* ** TeCGraf - PUC-Rio -** $Id: opcode.h,v 3.2 1994/11/04 10:47:49 roberto Exp $ +** $Id: opcode.h,v 3.3 1994/11/06 15:35:04 roberto Exp $ */ #ifndef opcode_h @@ -117,7 +117,7 @@ typedef union typedef struct Object { - Type tag; + lua_Type tag; Value value; } Object;