Commit 3e0ff32bd8

hryx <codroid@gmail.com>
2019-06-28 06:17:27
Separate with space instead of LF to prevent rendering excessive indentation
1 parent b4bd52c
Changed files (1)
src-self-hosted
src-self-hosted/translate_c.zig
@@ -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;
 }