From 54b49265cd9a4b8b6634d8cd30332f5df12ce067 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Tue, 25 Jun 2019 16:25:56 +0200 Subject: [PATCH] took out "relabel" options for COMBINE --- HISTORY.md | 1 + src/objects.js | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 1d20ae89..24cb3537 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -91,6 +91,7 @@ ### 2019-06-25 * threads: 2 optional formal inputs for rings in MAP, KEEP, FIND, COMBINE: index and source list * objects, threads: renamed COMBINE label, switching the inputs +* objects: took out "relabel" options for COMBINE ### 2019-06-24 * removed "such that" from KEEP and FIND block labels diff --git a/src/objects.js b/src/objects.js index 056bb1b9..520d8c30 100644 --- a/src/objects.js +++ b/src/objects.js @@ -1583,10 +1583,9 @@ SpriteMorph.prototype.blockAlternatives = { doHideVar: ['doShowVar'], // lists - HOFs - reportMap: ['reportKeep', 'reportFindFirst', 'reportCombine'], - reportKeep: ['reportFindFirst', 'reportMap', 'reportCombine'], - reportCombine: ['reportMap', 'reportKeep', 'reportFindFirst'], - reportFindFirst: ['reportKeep', 'reportMap', 'reportCombine'] + reportMap: ['reportKeep', 'reportFindFirst'], + reportKeep: ['reportFindFirst', 'reportMap'], + reportFindFirst: ['reportKeep', 'reportMap'] }; // SpriteMorph instance creation