diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-05-08 16:37:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-05-08 16:37:10 -0300 |
commit | 91f34fb05caa9590cd19a986e865a93361b1c398 (patch) | |
tree | b176fee3ec1b84420e737dc16b4de8fe1febbf46 /lobject.h | |
parent | 11a70220670f25a9929439f0b27331f09f05235c (diff) | |
download | lua-91f34fb05caa9590cd19a986e865a93361b1c398.tar.gz lua-91f34fb05caa9590cd19a986e865a93361b1c398.tar.bz2 lua-91f34fb05caa9590cd19a986e865a93361b1c398.zip |
lua.h should not use names without prefix lua_ (`TObject', for instance)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.61 2000/04/25 16:55:09 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.62 2000/05/08 19:32:53 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -79,7 +79,7 @@ typedef union { | |||
79 | #define avalue(o) ((o)->value.a) | 79 | #define avalue(o) ((o)->value.a) |
80 | 80 | ||
81 | 81 | ||
82 | typedef struct TObject { | 82 | typedef struct lua_TObject { |
83 | lua_Type ttype; | 83 | lua_Type ttype; |
84 | Value value; | 84 | Value value; |
85 | } TObject; | 85 | } TObject; |