Remove broken dot parsing in C code

Fixes #13
This commit is contained in:
Justine Tunney 2021-11-21 23:25:22 -08:00
parent 3d19d8d9f2
commit 2f57156c34

1
lisp.c
View file

@ -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;