From a701883f4ea83022261304d225eb8225af52b302 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Tue, 6 Aug 2024 18:24:28 +0100 Subject: fix failing tests --- read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'read.c') 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; } -- cgit v1.2.3