aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-09-25 14:08:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-09-25 14:08:46 -0300
commit8e9b1e4ae979aec95dcceb0db177367f5e865041 (patch)
tree6a00fb28f7a79c7320b81103ebb4baf1bbb4d205 /lobject.h
parent328d53e77bf53277f565944055d3dd923d9b5c46 (diff)
downloadlua-8e9b1e4ae979aec95dcceb0db177367f5e865041.tar.gz
lua-8e9b1e4ae979aec95dcceb0db177367f5e865041.tar.bz2
lua-8e9b1e4ae979aec95dcceb0db177367f5e865041.zip
details
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 {