From a94337bc116faf10e233c422798e9af99dab6682 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 21 Feb 2025 15:19:19 -0500 Subject: Deprecate autoformatter --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index d9b59372..b7b94efc 100644 --- a/compile.c +++ b/compile.c @@ -62,7 +62,7 @@ static CORD with_source_info(ast_t *ast, CORD code) if (code == CORD_EMPTY || !ast || !ast->file) return code; int64_t line = get_line_number(ast->file, ast->start); - return CORD_asprintf("#line %ld\n%r", line, code); + return CORD_asprintf("\n#line %ld\n%r", line, code); } static bool promote(env_t *env, ast_t *ast, CORD *code, type_t *actual, type_t *needed) -- cgit v1.2.3