summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-08-06 18:24:28 +0100
committerubq323 <ubq323@ubq323.website>2024-08-06 18:24:28 +0100
commita701883f4ea83022261304d225eb8225af52b302 (patch)
treed95127abc4cfa953653bdc550ebada0061678d16 /read.c
parent0cc8e1fd89aacd54926b61ac3b9c4a2810024b4a (diff)
fix failing tests
Diffstat (limited to 'read.c')
-rw-r--r--read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read.c b/read.c
index b3fc5a3..5b3f43e 100644
--- a/read.c
+++ b/read.c
@@ -18,7 +18,7 @@ static bool is_ws(char x) { return x == ' ' || x == '\t' || x == '\n';}
static bool is_num(char x) { return '0' <= x && x <= '9'; }
static bool is_special(char x) {
switch(x) {
- case '(': case ')': case '[': case ']': case '\'': case '"':
+ case '(': case ')': case '[': case ']': case '"':
return true; break;
default: return false; break;
}