From 1b15206cf9aa7005fc3d48f78f60f66838f10eb5 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 14 Dec 1999 16:33:29 -0200 Subject: many details + code redistribution --- lobject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index d644d2ea..8c6b63f1 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.38 1999/11/26 18:59:20 roberto Exp roberto $ +** $Id: lobject.h,v 1.39 1999/12/02 16:24:45 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -197,7 +197,7 @@ typedef struct Hash { extern const char *const luaO_typenames[]; -#define luaO_typename(L, o) luaO_typenames[-ttype(o)] +#define luaO_typename(o) luaO_typenames[-ttype(o)] #define MINPOWER2 4 /* minimum size for "growing" vectors */ -- cgit v1.2.3-55-g6feb