edits
[lambda.git] / code / parse.js
index 4d2bc8d..e911aa4 100644 (file)
@@ -233,8 +233,8 @@ var make_parse = function () {
                 return t;
             } else {
                 t.first = [];
-                while (token.arity === "name") {
-                    t.first.push(n);
+                while (token.arity === "name" || token.id === "\\") {
+                   if (token.id !== "\\") {t.first.push(n);}
                     n = token;
                     advance();
                 }