summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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') {