diff --git a/history.txt b/history.txt index f9bdb8d7..0a3ea63a 100755 --- a/history.txt +++ b/history.txt @@ -3085,3 +3085,4 @@ http://snap.berkeley.edu/run#cloud:Username=jens&ProjectName=rotation ------ * Text Editing Tweaks, thanks, Bernat!! * Store: fixed #1472 +* Trheads: Tweak continuations diff --git a/threads.js b/threads.js index 5d5baba5..7a96c51b 100644 --- a/threads.js +++ b/threads.js @@ -61,7 +61,7 @@ StageMorph, SpriteMorph, StagePrompterMorph, Note, modules, isString, copy, isNil, WatcherMorph, List, ListWatcherMorph, alert, console, TableMorph, TableFrameMorph, isSnapObject*/ -modules.threads = '2016-October-21'; +modules.threads = '2016-October-24'; var ThreadManager; var Process; @@ -3531,7 +3531,9 @@ Context.prototype.continuation = function () { } else if (this.parentContext) { cont = this.parentContext; } else { - return new Context(null, 'doStop'); + cont = new Context(null, 'expectReport'); + cont.isContinuation = true; + return cont; } cont = cont.copyForContinuation(); cont.tag = null;