Merge branch 'master' of git://github.com/Alek900/wren into Alek900-master

Conflicts:
	src/wren_compiler.c
This commit is contained in:
Bob Nystrom
2015-01-11 20:01:30 -08:00
2 changed files with 30 additions and 1 deletions
+4 -1
View File
@@ -785,8 +785,11 @@ static void nextToken(Parser* parser)
case ' ':
case '\r':
case '\t':
// Skip forward until we run out of whitespace.
while (peekChar(parser) == ' ' || peekChar(parser) == '\r')
while (peekChar(parser) == ' ' ||
peekChar(parser) == '\r' ||
peekChar(parser) == '\t')
{
nextChar(parser);
}