lua

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

commit 91f34fb05caa9590cd19a986e865a93361b1c398
parent 11a70220670f25a9929439f0b27331f09f05235c
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon,  8 May 2000 16:36:48 -0300

lua.h should not use names without prefix lua_ (`TObject', for instance)

Diffstat:
Mlobject.h | 4++--
Mlua.h | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 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; diff --git a/lua.h b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.48 2000/04/17 19:23:12 roberto Exp roberto $ +** $Id: lua.h,v 1.49 2000/05/08 19:32:53 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** e-mail: lua@tecgraf.puc-rio.br @@ -25,7 +25,7 @@ typedef struct lua_State lua_State; typedef void (*lua_CFunction) (lua_State *L); -typedef struct TObject *lua_Object; +typedef struct lua_TObject *lua_Object; #define LUA_NOOBJECT ((lua_Object)0)