Skip to content

Commit

Permalink
remove obsolete STOP primitive from the stage's palette
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Mar 19, 2018
1 parent dd1d2de commit 6bc25c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4042,3 +4042,4 @@ Translation Updates:
180319
------
* Threads: initialize Process>>gensyms with null (because it's hardly ever needed)
* Objects: remove obsolete STOP primitive from the stage's palette
5 changes: 4 additions & 1 deletion objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, localize,
TableMorph, TableFrameMorph, normalizeCanvas, BooleanSlotMorph, HandleMorph,
AlignmentMorph, Process*/

modules.objects = '2018-March-13';
modules.objects = '2018-March-19';

var SpriteMorph;
var StageMorph;
Expand Down Expand Up @@ -7163,7 +7163,10 @@ StageMorph.prototype.blockTemplates = function (category) {
blocks.push(block('doStopAll'));
*/
blocks.push(block('doStopThis'));
/*
// migrated to doStopThis, now redundant
blocks.push(block('doStopOthers'));
*/
blocks.push('-');
blocks.push(block('doRun'));
blocks.push(block('fork'));
Expand Down

0 comments on commit 6bc25c7

Please sign in to comment.