From fc8935121e7c7a1ad750e83d9eb51f2af5966505 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Tue, 23 Apr 2013 16:37:30 -0600 Subject: [PATCH] correcting the comment: we're calling the procedure, not the handler. --- whalesong/js-assembler/runtime-src/baselib-primitives.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whalesong/js-assembler/runtime-src/baselib-primitives.js b/whalesong/js-assembler/runtime-src/baselib-primitives.js index 7fa2800..c91b26d 100644 --- a/whalesong/js-assembler/runtime-src/baselib-primitives.js +++ b/whalesong/js-assembler/runtime-src/baselib-primitives.js @@ -3280,7 +3280,7 @@ // subtle: the prompt's environment is the one _after_ the current call! // That's why we need to do M.e.length - M.a: the environment currently - // has extra values due to us calling the prompt handler here. + // has extra values due to us calling the prompt's procedure here. M.addPrompt(promptTag, handler, M.e.length - M.a); baselib.functions.rawApply(M);