diff options
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 | ||