diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2016-12-22 11:08:50 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2016-12-22 11:08:50 -0200 |
commit | 2a235312f029cbd2b1eb79f158d4f74b3ffa1b85 (patch) | |
tree | ee359ba97c390d1d6709243ab7c92c1e8252617a /lgc.c | |
parent | 9903dd52a39fbe4531596b1266e226f01769de21 (diff) | |
download | lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.gz lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.bz2 lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.zip |
detail (removing spaces at end of lines)
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 2.213 2016/10/19 12:31:42 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 2.214 2016/11/07 12:38:35 roberto Exp roberto $ |
3 | ** Garbage Collector | 3 | ** Garbage Collector |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -539,7 +539,7 @@ static lu_mem traversethread (global_State *g, lua_State *th) { | |||
539 | StkId lim = th->stack + th->stacksize; /* real end of stack */ | 539 | StkId lim = th->stack + th->stacksize; /* real end of stack */ |
540 | for (; o < lim; o++) /* clear not-marked stack slice */ | 540 | for (; o < lim; o++) /* clear not-marked stack slice */ |
541 | setnilvalue(o); | 541 | setnilvalue(o); |
542 | /* 'remarkupvals' may have removed thread from 'twups' list */ | 542 | /* 'remarkupvals' may have removed thread from 'twups' list */ |
543 | if (!isintwups(th) && th->openupval != NULL) { | 543 | if (!isintwups(th) && th->openupval != NULL) { |
544 | th->twups = g->twups; /* link it back to the list */ | 544 | th->twups = g->twups; /* link it back to the list */ |
545 | g->twups = th; | 545 | g->twups = th; |