From b58daa1469b36fdc7a8c3441ce33e0a6e6e61e0b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 15:50:43 -0400 Subject: Deprecate more set stuff --- src/formatter/formatter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/formatter') diff --git a/src/formatter/formatter.c b/src/formatter/formatter.c index 52a6303c..d37e2545 100644 --- a/src/formatter/formatter.c +++ b/src/formatter/formatter.c @@ -589,7 +589,7 @@ Text_t format_code(ast_t *ast, Table_t comments, Text_t indent) { /*multiline*/ case List: { if (inlined_fits) return inlined; ast_list_t *items = Match(ast, List)->items; - Text_t code = ast->tag == List ? Text("[") : Text("|"); + Text_t code = Text("["); const char *comment_pos = ast->start; for (ast_list_t *item = items; item; item = item->next) { for (OptionalText_t comment; -- cgit v1.2.3