diff options
Diffstat (limited to 'lstring.c')
-rw-r--r-- | lstring.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstring.c,v 1.11 1998/01/28 16:50:33 roberto Exp roberto $ | 2 | ** $Id: lstring.c,v 1.12 1998/03/06 16:54:42 roberto Exp roberto $ |
3 | ** String table (keeps all strings handled by Lua) | 3 | ** String table (keeps all strings handled by Lua) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -258,7 +258,7 @@ TaggedString *luaS_collectudata (void) | |||
258 | for (j=0; j<tb->size; j++) { | 258 | for (j=0; j<tb->size; j++) { |
259 | TaggedString *t = tb->hash[j]; | 259 | TaggedString *t = tb->hash[j]; |
260 | if (t == NULL || t == &EMPTY || t->constindex != -1) | 260 | if (t == NULL || t == &EMPTY || t->constindex != -1) |
261 | continue; /* get only user datas */ | 261 | continue; /* get only user data */ |
262 | t->head.next = (GCnode *)frees; | 262 | t->head.next = (GCnode *)frees; |
263 | frees = t; | 263 | frees = t; |
264 | tb->hash[j] = &EMPTY; | 264 | tb->hash[j] = &EMPTY; |