From b56361b4687359f21c581367b05c8b74d0ff769e Mon Sep 17 00:00:00 2001 From: Ákos Kőrösi Date: Thu, 21 May 2026 20:16:53 +0200 Subject: remove diagprints --- src/lexparse.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/lexparse.c') diff --git a/src/lexparse.c b/src/lexparse.c index 14566f5..e412759 100644 --- a/src/lexparse.c +++ b/src/lexparse.c @@ -48,7 +48,6 @@ static MaybeChunk handle_dollar_expansion(char* line, size_t* pos, QuotationMode } else if (line[*pos] == '_' || isalnum(line[*pos])){ String buf = make_String(256); while (line[*pos] == '_' || isalnum(line[*pos])) { - printf("%c\n", line[*pos]); push_to_String(&buf, line[(*pos)++]); } return (MaybeChunk){ @@ -100,7 +99,6 @@ static Chunk collect_single_q_section(char* line, size_t* pos) { static void collect_double_q_section(char* line, Word* result_buf, size_t* pos) { // TODO: add the extra double-q expansions (*pos)++; - printf("%c\n", line[*pos]); String lit_buf = make_String(256); while (line[*pos] != '\"' && line[*pos] != '\0') { -- cgit v1.2.3