aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-07 13:20:56 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-07 13:20:56 -0200
commitde4e2305c512e23263842c82896bd0a96d960b6f (patch)
treed5884fa6fb8e3939b71ccc0b40749a481ec458da
parent63d300167e9c31bd394fa1439d04cd3a3b995894 (diff)
downloadlua-de4e2305c512e23263842c82896bd0a96d960b6f.tar.gz
lua-de4e2305c512e23263842c82896bd0a96d960b6f.tar.bz2
lua-de4e2305c512e23263842c82896bd0a96d960b6f.zip
Type renamed to lua_Type
-rw-r--r--opcode.h4
1 files 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 @@
1/* 1/*
2** TeCGraf - PUC-Rio 2** TeCGraf - PUC-Rio
3** $Id: opcode.h,v 3.2 1994/11/04 10:47:49 roberto Exp $ 3** $Id: opcode.h,v 3.3 1994/11/06 15:35:04 roberto Exp $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -117,7 +117,7 @@ typedef union
117 117
118typedef struct Object 118typedef struct Object
119{ 119{
120 Type tag; 120 lua_Type tag;
121 Value value; 121 Value value;
122} Object; 122} Object;
123 123