From 8e9b1e4ae979aec95dcceb0db177367f5e865041 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 25 Sep 2001 14:08:46 -0300 Subject: details --- lobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 6fa0ca92..234b78b1 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.110 2001/08/27 15:16:28 roberto Exp $ +** $Id: lobject.h,v 1.112 2001/09/07 17:39:10 roberto Exp $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -178,8 +178,8 @@ typedef struct UpVal { ** Closures */ typedef struct Closure { - int isC; /* 0 for Lua functions, 1 for C functions */ - int nupvalues; + short isC; /* 0 for Lua functions, 1 for C functions */ + short nupvalues; struct Closure *next; struct Closure *mark; /* marked closures (point to itself when not marked) */ union { -- cgit v1.2.3-55-g6feb