From 3c9d999424520c809e05bee11d81788b488434f6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 3 Mar 2000 11:58:26 -0300 Subject: many details (most by lhf). --- lfunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lfunc.c') diff --git a/lfunc.c b/lfunc.c index c2ea14f4..fad91ace 100644 --- a/lfunc.c +++ b/lfunc.c @@ -1,5 +1,5 @@ /* -** $Id: lfunc.c,v 1.17 2000/01/25 13:57:18 roberto Exp roberto $ +** $Id: lfunc.c,v 1.18 2000/01/28 16:53:00 roberto Exp roberto $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -14,7 +14,7 @@ #include "lstate.h" #define gcsizeproto(L, p) numblocks(L, 0, sizeof(TProtoFunc)) -#define gcsizeclosure(L, c) numblocks(L, c->nelems, sizeof(Closure)) +#define gcsizeclosure(L, c) numblocks(L, c->nelems, sizeof(Closure)) -- cgit v1.2.3-55-g6feb