summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2014-06-05 17:16:27 +0200
committerjmoenig <jens@moenig.org>2014-06-05 17:16:27 +0200
commit9f690fbfa393c2bc73ac4a8a479ae089161a7556 (patch)
tree36a14f2c60e55834fabeb6f289a65c6c68182244 /threads.js
parentf80235ee43f21db5a4036ce0cdbea65cc821899b (diff)
downloadsnap-byow-9f690fbfa393c2bc73ac4a8a479ae089161a7556.tar.gz
snap-byow-9f690fbfa393c2bc73ac4a8a479ae089161a7556.zip
initialize new variables with zero (instead of null)
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) {