From: Chris Barker Date: Sun, 26 Sep 2010 14:08:35 +0000 (-0400) Subject: edits X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=af5b07b20b0791bc0f386f71f98475c9d7c9e4e0 edits --- 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) {