Correcting the behavior of the default abort handler so it reestablishes the prompt frame, so that another abort doesn't escape.
This commit is contained in:
parent
8fd768e4ef
commit
57ef1d4a7d
|
@ -3146,18 +3146,22 @@
|
|||
|
||||
|
||||
|
||||
// The default prompt handler consumes a thunk and applies it.
|
||||
// The default abort prompt handler consumes a thunk and applies
|
||||
// it, in a context where a new prompt has been initialized.
|
||||
var defaultPromptHandler =
|
||||
makeClosure("default-prompt-handler",
|
||||
1,
|
||||
function(M) {
|
||||
var proc = checkProcedure(M, 'apply', 0);
|
||||
M.e.pop();
|
||||
M.p = proc;
|
||||
M.a = 0;
|
||||
baselib.functions.rawApply(M);
|
||||
},
|
||||
[]);
|
||||
makeClosure(
|
||||
"default-prompt-handler",
|
||||
1,
|
||||
function(M) {
|
||||
var proc = checkProcedure(M, 'apply', 0);
|
||||
M.e.pop();
|
||||
M.p = proc;
|
||||
M.a = 0;
|
||||
M.addPrompt(baselib.contmarks.DEFAULT_CONTINUATION_PROMPT_TAG,
|
||||
false);
|
||||
baselib.functions.rawApply(M);
|
||||
},
|
||||
[]);
|
||||
|
||||
|
||||
installPrimitiveClosure(
|
||||
|
|
|
@ -489,6 +489,24 @@
|
|||
};
|
||||
|
||||
|
||||
var justReturn = function(M) {
|
||||
M.p=M.c[M.c.length-1].label;
|
||||
M.c.pop();
|
||||
return(M.p)(M);
|
||||
};
|
||||
justReturn.mvr = function(M) {
|
||||
M.p=M.c[M.c.length-1].label;
|
||||
M.c.pop();
|
||||
return(M.p.mvr)(M);
|
||||
};
|
||||
Machine.prototype.addPrompt = function(promptTag, abortHandlerClosure) {
|
||||
this.c.push(new PromptFrame(justReturn,
|
||||
DEFAULT_CONTINUATION_PROMPT_TAG,
|
||||
this.e.length,
|
||||
abortHandlerClosure));
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user