瀏覽代碼

Remove broken dot parsing in C code

Fixes #13
Justine Tunney 3 年之前
父節點
當前提交
2f57156c34
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      lisp.c

+ 0 - 1
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;