From af5b07b20b0791bc0f386f71f98475c9d7c9e4e0 Mon Sep 17 00:00:00 2001 From: Chris Barker Date: Sun, 26 Sep 2010 10:08:35 -0400 Subject: [PATCH] edits --- code/parse.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/parse.js b/code/parse.js index 9034e460..72fda3e6 100644 --- a/code/parse.js +++ b/code/parse.js @@ -233,11 +233,9 @@ var make_parse = function () { return t; } else { t.first = []; - while (token.arity === "name" || token.id === "\\" || token.id === "lambda") { - ; if (not (token.id === "\\" || token.id === "lambda") { + while (token.arity === "name") { t.first.push(n); n = token; - ; } advance(); } if (token.arity === "literal" && t.first.length === 0) { -- 2.11.0