aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-12-22 11:08:50 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-12-22 11:08:50 -0200
commit2a235312f029cbd2b1eb79f158d4f74b3ffa1b85 (patch)
treeee359ba97c390d1d6709243ab7c92c1e8252617a /lgc.c
parent9903dd52a39fbe4531596b1266e226f01769de21 (diff)
downloadlua-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 55a51870..de3f2a21 100644
--- a/lgc.c
+++ b/lgc.c
@@ -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;