summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-12-11 10:20:40 +0100
committerjmoenig <jens@moenig.org>2013-12-11 10:20:40 +0100
commitf0268d9cd81b6869eaeb9d7729806fd9d33573ab (patch)
tree6c2b459141fb65808c47e651abfc64d5a4f379ea
parent0e27d975c6e587b7f7c72ef6b960e21a0663388c (diff)
downloadsnap-f0268d9cd81b6869eaeb9d7729806fd9d33573ab.tar.gz
snap-f0268d9cd81b6869eaeb9d7729806fd9d33573ab.zip
accept lists as inputs to the green (text) LENGTH OF reporter
-rwxr-xr-xhistory.txt6
-rw-r--r--threads.js5
2 files changed, 9 insertions, 2 deletions
diff --git a/history.txt b/history.txt
index 6cd0c3f..62dadb2 100755
--- a/history.txt
+++ b/history.txt
@@ -2030,4 +2030,8 @@ ______
131205
------
* Threads: fixed literal-to-non-literal zero-value comparison bug
-* Objects: fixed #264 (mapped <ctrl-enter> to green-flag instead of <enter>
+* Objects: fixed #264 (mapped <ctrl-enter> to green-flag instead of <enter>)
+
+131211
+------
+* Threads: accept lists as inputs to the green (text) LENGTH OF reporter
diff --git a/threads.js b/threads.js
index fe5540c..d1e57d3 100644
--- a/threads.js
+++ b/threads.js
@@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
// Global stuff ////////////////////////////////////////////////////////
-modules.threads = '2013-December-05';
+modules.threads = '2013-December-11';
var ThreadManager;
var Process;
@@ -2058,6 +2058,9 @@ Process.prototype.reportLetter = function (idx, string) {
};
Process.prototype.reportStringSize = function (string) {
+ if (string instanceof List) { // catch a common user error
+ return string.length();
+ }
var str = (string || '').toString();
return str.length;
};