Separate with space instead of LF to prevent rendering excessive indentation

master
hryx 2019-06-27 21:17:27 -07:00
parent b4bd52cc51
commit 3e0ff32bd8
No known key found for this signature in database
GPG Key ID: 6A2784E15D7D95D6
1 changed files with 1 additions and 1 deletions

View File

@ -1452,7 +1452,7 @@ fn appendTokenFmt(c: *Context, token_id: Token.Id, comptime format: []const u8,
.start = start_index,
.end = end_index,
};
try c.source_buffer.appendByte('\n');
try c.source_buffer.appendByte(' ');
return token_index;
}