From: Chris Barker Date: Sun, 26 Sep 2010 14:13:46 +0000 (-0400) Subject: edits X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=9731d7ed813516ee7c8c7ee8f24f3295789295d3 edits --- diff --git a/code/parse.js b/code/parse.js index 8856b164..08bc9a0e 100644 --- a/code/parse.js +++ b/code/parse.js @@ -234,8 +234,8 @@ var make_parse = function () { } else { t.first = []; while (token.arity === "name" || token.id === "\\") { - t.first.push(n); - n = token; + if (token.id !=== "\\") {t.first.push(n);} + n = token; advance(); } if (token.arity === "literal" && t.first.length === 0) {