correcting unbound identifier error for the prompt call
This commit is contained in:
parent
df8416ec00
commit
d9df598fe1
|
@ -209,6 +209,9 @@
|
|||
|
||||
'unsafe-car
|
||||
'unsafe-cdr
|
||||
|
||||
'abort-current-continuation
|
||||
'call-with-continuation-prompt
|
||||
))
|
||||
(define-predicate KernelPrimitiveName? KernelPrimitiveName)
|
||||
|
||||
|
|
|
@ -692,7 +692,7 @@ var invokeMainModule = function() {
|
|||
window.console.log('evaluation took ' + (stopTime - startTime) + ' milliseconds');
|
||||
}
|
||||
},
|
||||
function(M, e) {
|
||||
function(e) {
|
||||
var contMarkSet, context, i, appName, contextDiv, srclocProcedure;
|
||||
|
||||
var displayContext = function() {
|
||||
|
|
|
@ -3215,7 +3215,7 @@
|
|||
if (M.a >= 2) {
|
||||
promptTag = checkPromptTag(M, 'call-with-continuation-prompt', 1);
|
||||
} else {
|
||||
promptTag = DEFAULT_CONTINUATION_PROMPT_TAG;
|
||||
promptTag = baselib.contmarks.DEFAULT_CONTINUATION_PROMPT_TAG;
|
||||
}
|
||||
if (M.a >= 3) {
|
||||
if (M.e[M.e.length - 1 - 3] === false) {
|
||||
|
@ -3224,7 +3224,7 @@
|
|||
handler = checkProcedure(M, 'call-with-continuation-prompt', 2);
|
||||
}
|
||||
} else {
|
||||
if (promptTag === DEFAULT_CONTINUATION_PROMPT_TAG) {
|
||||
if (promptTag === baselib.contmarks.DEFAULT_CONTINUATION_PROMPT_TAG) {
|
||||
handler = defaultPromptHandler;
|
||||
} else {
|
||||
handler = makeDefaultPromptHandler(promptTag);
|
||||
|
|
|
@ -356,8 +356,8 @@
|
|||
fail(err);
|
||||
});
|
||||
},
|
||||
function() {
|
||||
fail();
|
||||
function(err) {
|
||||
fail(err);
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user