X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=code%2Fparse.js;h=e3940b49c3acb8e2df26a7df0ae12e926390d802;hp=e911aa42e59bc3fd882249d3d677bd25787866fd;hb=0301fcca8fe62d2f2355f4781c6106b5d246df60;hpb=466e57fc9e1c65c5b8c092ca8be03a4c69031f16 diff --git a/code/parse.js b/code/parse.js index e911aa42..e3940b49 100644 --- a/code/parse.js +++ b/code/parse.js @@ -234,8 +234,10 @@ var make_parse = function () { } else { t.first = []; while (token.arity === "name" || token.id === "\\") { - if (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) {