diff options
| author | jmoenig <jens@moenig.org> | 2013-11-26 12:29:01 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-11-26 12:29:01 +0100 |
| commit | 1b05a11f14d6df63566c25494ff0389f0448d1f2 (patch) | |
| tree | 39d50a1e57b325d7cdc047bb3cfeefe221b55814 | |
| parent | f10a16e3f60de760485d6acc07aa8d2e4800c6c4 (diff) | |
| download | snap-yow-1b05a11f14d6df63566c25494ff0389f0448d1f2.tar.gz snap-yow-1b05a11f14d6df63566c25494ff0389f0448d1f2.zip | |
fixed # 179
don’t identify primitive (static) C-Slots as implicit formal parameters
| -rw-r--r-- | blocks.js | 2 | ||||
| -rwxr-xr-x | history.txt | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -5262,7 +5262,7 @@ CommandSlotMorph.prototype.evaluate = function () { }; CommandSlotMorph.prototype.isEmptySlot = function () { - return this.nestedBlock() === null; + return !this.isStatic && (this.nestedBlock() === null); }; // CommandSlotMorph context menu ops diff --git a/history.txt b/history.txt index d8e5d8f..abe22be 100755 --- a/history.txt +++ b/history.txt @@ -2015,3 +2015,4 @@ ______ * Localization and Portuguese translation updates, thanks, Manuel! * Catalan translation update, thanks, Bernat!! * Threads: Text comparisons are now case-sensitive („fixes“ #175) +* Threads: fixed # 179 - don’t identify primitive (static) C-Slots as implicit formal parameters |
