diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-07 13:20:56 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-07 13:20:56 -0200 |
commit | de4e2305c512e23263842c82896bd0a96d960b6f (patch) | |
tree | d5884fa6fb8e3939b71ccc0b40749a481ec458da | |
parent | 63d300167e9c31bd394fa1439d04cd3a3b995894 (diff) | |
download | lua-de4e2305c512e23263842c82896bd0a96d960b6f.tar.gz lua-de4e2305c512e23263842c82896bd0a96d960b6f.tar.bz2 lua-de4e2305c512e23263842c82896bd0a96d960b6f.zip |
Type renamed to lua_Type
-rw-r--r-- | opcode.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
118 | typedef struct Object | 118 | typedef struct Object |
119 | { | 119 | { |
120 | Type tag; | 120 | lua_Type tag; |
121 | Value value; | 121 | Value value; |
122 | } Object; | 122 | } Object; |
123 | 123 | ||