diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.100 2001/03/02 17:27:50 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.101 2001/03/07 18:09:25 roberto Exp roberto $ |
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 | */ |
@@ -179,6 +179,7 @@ typedef struct Hash { | |||
179 | Node *firstfree; /* this position is free; all positions after it are full */ | 179 | Node *firstfree; /* this position is free; all positions after it are full */ |
180 | struct Hash *next; | 180 | struct Hash *next; |
181 | struct Hash *mark; /* marked tables (point to itself when not marked) */ | 181 | struct Hash *mark; /* marked tables (point to itself when not marked) */ |
182 | int weakmode; | ||
182 | } Hash; | 183 | } Hash; |
183 | 184 | ||
184 | 185 | ||