diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:33:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:33:29 -0200 |
commit | 1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (patch) | |
tree | 00a96c96d331417ba781b605c6c10d8daae01938 /lobject.h | |
parent | e6d56cd2d844174bd40af4c44c0f68e2115e5876 (diff) | |
download | lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.gz lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.bz2 lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.zip |
many details + code redistribution
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.38 1999/11/26 18:59:20 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.39 1999/12/02 16:24:45 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 | */ |
@@ -197,7 +197,7 @@ typedef struct Hash { | |||
197 | 197 | ||
198 | extern const char *const luaO_typenames[]; | 198 | extern const char *const luaO_typenames[]; |
199 | 199 | ||
200 | #define luaO_typename(L, o) luaO_typenames[-ttype(o)] | 200 | #define luaO_typename(o) luaO_typenames[-ttype(o)] |
201 | 201 | ||
202 | #define MINPOWER2 4 /* minimum size for "growing" vectors */ | 202 | #define MINPOWER2 4 /* minimum size for "growing" vectors */ |
203 | 203 | ||