summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-01 14:06:58 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-01 14:06:58 -0300
commit9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2 (patch)
tree748e3f7b84f04d7ab438b9970ac42ef0efe95811 /lobject.h
parent5fabed21a17b133182a7e47712b7c7602ea87401 (diff)
downloadlua-github-9f4b5b52327497e3ce82cb0af1d94ad6c09b1da2.tar.gz
weak keys are removed only after finalization
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lobject.h b/lobject.h
index 259c2977..616b897c 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 1.137 2002/06/24 13:08:45 roberto Exp roberto $
+** $Id: lobject.h,v 1.138 2002/06/24 20:17:59 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -217,9 +217,6 @@ typedef struct Table {
} Table;
-/* unmarked tables are represented by pointing `mark' to themselves */
-#define ismarked(x) ((x)->mark != (x))
-
/*
** `module' operation for hashing (size is always a power of 2)