diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-06-19 13:14:09 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-06-19 13:14:09 -0300 |
| commit | 9618aaf07d0d82ccbac91db22cb42451ec17d7ed (patch) | |
| tree | 199314fbf7462d174921c71af389da14b4f6c595 /lstring.c | |
| parent | bec9bc4154e54fbc19b134874f6301f1e4654d5d (diff) | |
| download | lua-github-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.gz | |
small corrections in comments
Diffstat (limited to 'lstring.c')
| -rw-r--r-- | lstring.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lstring.c,v 1.11 1998/01/28 16:50:33 roberto Exp roberto $ +** $Id: lstring.c,v 1.12 1998/03/06 16:54:42 roberto Exp roberto $ ** String table (keeps all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -258,7 +258,7 @@ TaggedString *luaS_collectudata (void) for (j=0; j<tb->size; j++) { TaggedString *t = tb->hash[j]; if (t == NULL || t == &EMPTY || t->constindex != -1) - continue; /* get only user datas */ + continue; /* get only user data */ t->head.next = (GCnode *)frees; frees = t; tb->hash[j] = &EMPTY; |
