summaryrefslogtreecommitdiff
path: root/src/lexparse.c
diff options
context:
space:
mode:
authorÁkos Kőrösi <korakos99@gmail.com>2026-05-21 20:16:53 +0200
committerÁkos Kőrösi <korakos99@gmail.com>2026-05-21 20:16:53 +0200
commitb56361b4687359f21c581367b05c8b74d0ff769e (patch)
treea25733e9965d89dfb6ddc9b8d5ea903f46a3ccec /src/lexparse.c
parent4b73bf960895a139330bf4c0d0317e5d2f48e06b (diff)
remove diagprints
Diffstat (limited to 'src/lexparse.c')
-rw-r--r--src/lexparse.c2
1 files changed, 0 insertions, 2 deletions
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') {