summaryrefslogtreecommitdiff
path: root/history.txt
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2014-11-21 16:55:25 +0100
committerjmoenig <jens@moenig.org>2014-11-21 16:55:25 +0100
commit9e91a93ac029056adae89e7b8e07558b47f9634f (patch)
treeee0f93561552e794927f885ccb28177777db1ebd /history.txt
parentf2d0c2eba5d6b012fc3fb1167c82b64b2f8ed447 (diff)
downloadsnap-byow-9e91a93ac029056adae89e7b8e07558b47f9634f.tar.gz
snap-byow-9e91a93ac029056adae89e7b8e07558b47f9634f.zip
Fix "stop this block"’s lexical awareness
“stop this block” when used inside a custom block definition now always returns out of the lexically enclosing script (the definition), even if it is used inside other nested, C-shaped custom blocks in the definition code. Previously it only stopped the nearest encompassing “for” block, now it always stops the block whose definition it is in. I don’t expect this fix to break any existing projects.
Diffstat (limited to 'history.txt')
-rwxr-xr-xhistory.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/history.txt b/history.txt
index 0faac6b..c468c99 100755
--- a/history.txt
+++ b/history.txt
@@ -2333,3 +2333,7 @@ ______
* Threads: fix ‘line’ option in ‘split’ block for Windows files, thanks, @brianharvey!
* Morphic: fix slider range 1, thanks, @tonychenr !
* translation update, thanks, Manuel!
+
+141121
+------
+* Threads, Blocks: Fix STOP THIS BLOCK’s lexical awareness