From 7e30900def8b01df28464477b943aab65f5637c6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 30 May 2000 16:00:31 -0300 Subject: better field name --- lobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index f667a103..0a6d1093 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.64 2000/05/10 16:33:20 roberto Exp roberto $ +** $Id: lobject.h,v 1.65 2000/05/24 13:54:49 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -144,8 +144,8 @@ typedef struct Closure { lua_CFunction c; /* C functions */ struct Proto *l; /* Lua functions */ } f; - int nelems; - TObject consts[1]; + int nupvalues; + TObject upvalue[1]; } Closure; -- cgit v1.2.3-55-g6feb