aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lobject.h b/lobject.h
index 6fa0ca92..234b78b1 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.110 2001/08/27 15:16:28 roberto Exp $ 2** $Id: lobject.h,v 1.112 2001/09/07 17:39:10 roberto Exp $
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*/
@@ -178,8 +178,8 @@ typedef struct UpVal {
178** Closures 178** Closures
179*/ 179*/
180typedef struct Closure { 180typedef struct Closure {
181 int isC; /* 0 for Lua functions, 1 for C functions */ 181 short isC; /* 0 for Lua functions, 1 for C functions */
182 int nupvalues; 182 short nupvalues;
183 struct Closure *next; 183 struct Closure *next;
184 struct Closure *mark; /* marked closures (point to itself when not marked) */ 184 struct Closure *mark; /* marked closures (point to itself when not marked) */
185 union { 185 union {