summaryrefslogtreecommitdiff
path: root/store.js
diff options
context:
space:
mode:
authorMichael Ball <cycomachead@gmail.com>2014-11-21 03:08:41 -0800
committerMichael Ball <cycomachead@gmail.com>2014-11-21 03:08:41 -0800
commit3e8146d043b1f1dc6f37e0a8cbd2e5d3dafb90c7 (patch)
tree0a36d8b40781b5c3adc38c382cd866bbd7499598 /store.js
parentdbf2e6665b4ff7ef8cb863bcfef5939117a2f795 (diff)
parentf2d0c2eba5d6b012fc3fb1167c82b64b2f8ed447 (diff)
downloadsnap-yow-3e8146d043b1f1dc6f37e0a8cbd2e5d3dafb90c7.tar.gz
snap-yow-3e8146d043b1f1dc6f37e0a8cbd2e5d3dafb90c7.zip
Merge in recent changes (split block improvements #619)
Diffstat (limited to 'store.js')
-rw-r--r--store.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/store.js b/store.js
index cb91139..bc24849 100644
--- a/store.js
+++ b/store.js
@@ -61,7 +61,7 @@ SyntaxElementMorph, Variable*/
// Global stuff ////////////////////////////////////////////////////////
-modules.store = '2014-October-01';
+modules.store = '2014-November-14';
// XML_Serializer ///////////////////////////////////////////////////////
@@ -1824,9 +1824,8 @@ Context.prototype.toXML = function (serializer) {
return '';
}
return serializer.format(
- '<context% ~><inputs>%</inputs><variables>%</variables>' +
+ '<context ~><inputs>%</inputs><variables>%</variables>' +
'%<receiver>%</receiver>%</context>',
- this.isLambda ? ' lambda="lambda"' : '',
this.inputs.reduce(
function (xml, input) {
return xml + serializer.format('<input>$</input>', input);