summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lexparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexparse.c b/src/lexparse.c
index 18d36ab..de14c0a 100644
--- a/src/lexparse.c
+++ b/src/lexparse.c
@@ -100,7 +100,7 @@ static Chunk collect_double_q_section(char* line, size_t* pos) {
(*pos)++;
String buf = make_String(256);
size_t i;
- for (i = *pos; line[i] != '\'' && line[i] != '\0'; i++) {
+ for (i = *pos; line[i] != '\"' && line[i] != '\0'; i++) {
push_to_String(&buf, line[i]);
}
if (line[i] == '\0') exit(44);