lua

A copy of the Lua development repository
Log | Files | Refs | README

commit de4e2305c512e23263842c82896bd0a96d960b6f
parent 63d300167e9c31bd394fa1439d04cd3a3b995894
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon,  7 Nov 1994 13:20:37 -0200

Type renamed to lua_Type

Diffstat:
Mopcode.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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;