commit 3e0ff32bd84102e4ea892bfdab6cd20daab83897 (tree)
parent b4bd52cc515e698a0bcf64653d829efeb2e0b4cb
Author: hryx <codroid@gmail.com>
Date: Thu, 27 Jun 2019 21:17:27 -0700
Separate with space instead of LF to prevent rendering excessive indentation
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src-self-hosted/translate_c.zig b/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;
}