From: Chris Barker Date: Sun, 26 Sep 2010 20:07:49 +0000 (-0400) Subject: added temps X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=3d53f3d6c3e6aba63a591446fa57b8f686f30ad4;ds=sidebyside added temps --- diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 37908ab5..4a5b9dc0 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -85,7 +85,7 @@ Object.prototype.error = function (message, t) { // string = expr.to_string() + "\n\n~~>\n\n"; string = ''; eta = document.getElementById('ETA').checked; - string = string + reduce(expr, eta, 2).to_string(); + string = string + reduce(expr, eta, false).to_string(); } catch (e) { string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);