detail (removing spaces at end of lines)

This commit is contained in:
Roberto Ierusalimschy
2016-12-22 11:08:50 -02:00
parent 9903dd52a3
commit 2a235312f0
12 changed files with 30 additions and 30 deletions

4
lgc.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: lgc.c,v 2.213 2016/10/19 12:31:42 roberto Exp roberto $
** $Id: lgc.c,v 2.214 2016/11/07 12:38:35 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/
@@ -539,7 +539,7 @@ static lu_mem traversethread (global_State *g, lua_State *th) {
StkId lim = th->stack + th->stacksize; /* real end of stack */
for (; o < lim; o++) /* clear not-marked stack slice */
setnilvalue(o);
/* 'remarkupvals' may have removed thread from 'twups' list */
/* 'remarkupvals' may have removed thread from 'twups' list */
if (!isintwups(th) && th->openupval != NULL) {
th->twups = g->twups; /* link it back to the list */
g->twups = th;