From d3bbb34c24cfe3e5296c6a5d3faacf6c8679fe70 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 5 Sep 2013 16:31:49 -0300 Subject: back to open hashing for the string table (but with a different 'hnext' field, to strings are still collected like all other objects) --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 38bbb982..40a23643 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.92 2013/08/30 19:14:26 roberto Exp roberto $ +** $Id: lstate.h,v 2.93 2013/09/03 15:37:10 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -53,7 +53,6 @@ struct lua_longjmp; /* defined in ldo.c */ typedef struct stringtable { TString **hash; int nuse; /* number of elements */ - int empty; /* number of available empty slots */ int size; } stringtable; -- cgit v1.2.3-55-g6feb