fixes #855; fix partially inspired by satyr/coco 3e37cf32

This commit is contained in:
Michael Ficarra
2010-11-26 02:08:25 -05:00
parent c0cb0c35e2
commit 63cbb64341
4 changed files with 46 additions and 39 deletions

View File

@@ -65,7 +65,7 @@
if (tuple.length < 3) {
tuple.unshift(null);
}
_results.push(buildRule.apply(buildRule, tuple));
_results.push(buildRule.apply(null, tuple));
}
return _results;
};