From 3c0d491705073309b374576f0ce9a1cefe868094 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Tue, 23 Apr 2013 14:57:13 -0600 Subject: [PATCH] correcting the raising of the right exception value to racket --- whalesong/js-assembler/runtime-src/runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whalesong/js-assembler/runtime-src/runtime.js b/whalesong/js-assembler/runtime-src/runtime.js index 487e2ed..b217258 100644 --- a/whalesong/js-assembler/runtime-src/runtime.js +++ b/whalesong/js-assembler/runtime-src/runtime.js @@ -736,7 +736,7 @@ exceptionHandlerFunction !== false) { that.p = exceptionHandlerFunction; that.a = 1; - that.e.push(e); + that.e.push(e.racketError); thunk = baselib.functions.rawApply; } else { that.running = false;