summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
authorMichael Ball <cycomachead@gmail.com>2014-06-21 11:37:25 -0700
committerMichael Ball <cycomachead@gmail.com>2014-06-21 11:37:25 -0700
commitec8b14a3758acfc852a6f02010394bd5814d7272 (patch)
tree2589fd29d40516c3a5c171a5aca6fcff80b7cff9 /threads.js
parentbf03185eb083ea4171121d25ffda3041d91be8e7 (diff)
parent7f8d5a3d1eacdc78f61da8e82ac481bbbb825938 (diff)
downloadsnap-yow-ec8b14a3758acfc852a6f02010394bd5814d7272.tar.gz
snap-yow-ec8b14a3758acfc852a6f02010394bd5814d7272.zip
Merge pull request #34 from jmoenig/master
updating cs10 branch from jmoenig 0614
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/threads.js b/threads.js
index 21147a3..d489441 100644
--- a/threads.js
+++ b/threads.js
@@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
// Global stuff ////////////////////////////////////////////////////////
-modules.threads = '2014-May-20';
+modules.threads = '2014-Jun-05';
var ThreadManager;
var Process;
@@ -3054,7 +3054,7 @@ VariableFrame.prototype.getVar = function (name, upvars) {
VariableFrame.prototype.addVar = function (name, value) {
this.vars[name] = (value === 0 ? 0
: value === false ? false
- : value === '' ? '' : value || null);
+ : value === '' ? '' : value || 0);
};
VariableFrame.prototype.deleteVar = function (name) {