diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-09-25 14:08:46 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-09-25 14:08:46 -0300 |
commit | 8e9b1e4ae979aec95dcceb0db177367f5e865041 (patch) | |
tree | 6a00fb28f7a79c7320b81103ebb4baf1bbb4d205 /lobject.h | |
parent | 328d53e77bf53277f565944055d3dd923d9b5c46 (diff) | |
download | lua-8e9b1e4ae979aec95dcceb0db177367f5e865041.tar.gz lua-8e9b1e4ae979aec95dcceb0db177367f5e865041.tar.bz2 lua-8e9b1e4ae979aec95dcceb0db177367f5e865041.zip |
details
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | */ |
180 | typedef struct Closure { | 180 | typedef 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 { |