Fix problem with identifiers and keywords being combined intobigidentifiers

This commit is contained in:
Hackerpilot 2015-01-13 15:01:17 -08:00
parent 39fadba85c
commit 43d84337d4
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ private:
else if (current.type == tok!"identifier")
{
writeToken();
if (current.type == tok!"identifier")
if (current.type == tok!"identifier" || isKeyword(current.type))
write(" ");
}
else