cleanup
This commit is contained in:
parent
ffc469de40
commit
c6b89c6a2e
|
@ -3145,7 +3145,9 @@
|
|||
});
|
||||
|
||||
|
||||
|
||||
// The default prompt handler for a given prompt tag will assume
|
||||
// it's consuming a zero-argument thunk, and will call it in a
|
||||
// context where that prompt has been reestablished.
|
||||
var makeDefaultPromptHandler = function(promptTag) {
|
||||
return makeClosure(
|
||||
"default-prompt-handler",
|
||||
|
@ -3161,6 +3163,7 @@
|
|||
[]);
|
||||
};
|
||||
|
||||
|
||||
// The default abort prompt handler consumes a thunk and applies
|
||||
// it, in a context where a new prompt has been initialized.
|
||||
var defaultPromptHandler =
|
||||
|
@ -3221,7 +3224,11 @@
|
|||
handler = checkProcedure(M, 'call-with-continuation-prompt', 2);
|
||||
}
|
||||
} else {
|
||||
handler = makeDefaultPromptHandler(promptTag);
|
||||
if (promptTag === DEFAULT_CONTINUATION_PROMPT_TAG) {
|
||||
handler = defaultPromptHandler;
|
||||
} else {
|
||||
handler = makeDefaultPromptHandler(promptTag);
|
||||
}
|
||||
}
|
||||
|
||||
M.p = proc;
|
||||
|
|
Loading…
Reference in New Issue
Block a user