diff options
Diffstat (limited to '')
| -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 { |
