From 2f57156c34b3cd2faab75a062602e1d197c5afc5 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Sun, 21 Nov 2021 23:25:22 -0800 Subject: [PATCH] Remove broken dot parsing in C code Fixes #13 --- lisp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp.c b/lisp.c index 6c792b7..f9b7477 100644 --- a/lisp.c +++ b/lisp.c @@ -202,7 +202,6 @@ int AddList(int x) { int GetList(void) { GetToken(); #if QUOTES - if (*g_token == '.') return ConsumeObject(); if (*g_token == '\'') return AddList(GetQuote()); #endif if (*g_token == ')') return NIL;