From 10199d2cee3e31ebd60c208f81baf165af31062d Mon Sep 17 00:00:00 2001 From: Chris Barker Date: Sun, 26 Sep 2010 10:14:43 -0400 Subject: [PATCH 1/1] edits --- code/parse.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) { -- 2.11.0