From 3cd3b20f58e9d2c6463d503be09e5d4cfaadee6c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 12 Oct 2025 14:05:22 -0400 Subject: Code cleanup and fixing minor issues --- src/parse/text.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/parse') diff --git a/src/parse/text.c b/src/parse/text.c index 6f032c4c..7650955c 100644 --- a/src/parse/text.c +++ b/src/parse/text.c @@ -116,7 +116,6 @@ static ast_list_t *_parse_text_helper(parse_ctx_t *ctx, const char **out_pos) { if (chunk.length > 0) { ast_t *literal = NewAST(ctx->file, chunk_start, pos, TextLiteral, .text = chunk); chunks = new (ast_list_t, .ast = literal, .next = chunks); - chunk = EMPTY_TEXT; } REVERSE_LIST(chunks); -- cgit v1.2.3