diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-01 14:06:58 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-01 14:06:58 -0300 |
commit | 9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2 (patch) | |
tree | 748e3f7b84f04d7ab438b9970ac42ef0efe95811 /lobject.h | |
parent | 5fabed21a17b133182a7e47712b7c7602ea87401 (diff) | |
download | lua-9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2.tar.gz lua-9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2.tar.bz2 lua-9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2.zip |
weak keys are removed only after finalization
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.137 2002/06/24 13:08:45 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.138 2002/06/24 20:17:59 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 | */ |
@@ -217,9 +217,6 @@ typedef struct Table { | |||
217 | } Table; | 217 | } Table; |
218 | 218 | ||
219 | 219 | ||
220 | /* unmarked tables are represented by pointing `mark' to themselves */ | ||
221 | #define ismarked(x) ((x)->mark != (x)) | ||
222 | |||
223 | 220 | ||
224 | /* | 221 | /* |
225 | ** `module' operation for hashing (size is always a power of 2) | 222 | ** `module' operation for hashing (size is always a power of 2) |