From 7a00bc9c71026edc39086f7b7f03e7297cd186c2 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Fri, 7 Feb 2020 16:27:22 -0500 Subject: finished new ident system --- err.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'err.c') diff --git a/err.c b/err.c index e0aab89..a40499e 100644 --- a/err.c +++ b/err.c @@ -114,11 +114,11 @@ static void warn_print_header_(Location where) { static void err_print_footer_(Location where, bool show_ctx_stack) { ErrCtx *ctx = where.file->ctx; - err_fprint(ctx, "\n"); + err_fprint(ctx, "\n\t"); print_location_highlight(err_ctx_file(ctx), where); if (ctx && show_ctx_stack) { arr_foreach(ctx->instance_stack, Location, inst) { - err_fprint(ctx, "While generating the instance of a function\n"); + err_fprint(ctx, "While generating the instance of a function\n\t"); print_location_highlight(err_ctx_file(ctx), *inst); } } -- cgit v1.2.3