about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--029tools.cc6
-rw-r--r--030container.cc2
-rw-r--r--032array.cc2
-rw-r--r--043new.cc2
4 files changed, 6 insertions, 6 deletions
diff --git a/029tools.cc b/029tools.cc
index 50e17643..12840d90 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -58,21 +58,21 @@ recipe main [
 
 :(scenario stash_literal_number)
 recipe main [
-  stash [foo: ], 4
+  stash [foo:], 4
 ]
 +app: foo: 4
 
 :(scenario stash_number)
 recipe main [
   1:number <- copy 34
-  stash [foo: ], 1:number
+  stash [foo:], 1:number
 ]
 +app: foo: 34
 
 :(code)
 string print_mu(const reagent& r, const vector<double>& data) {
   if (is_literal(r))
-    return r.name;
+    return r.name+' ';
   // End print Special-cases(reagent r, data)
   ostringstream out;
   for (long long i = 0; i < SIZE(data); ++i) {
diff --git a/030container.cc b/030container.cc
index 5a4803f8..d4712f40 100644
--- a/030container.cc
+++ b/030container.cc
@@ -105,7 +105,7 @@ recipe main [
   1:number <- copy 34  # first
   2:number <- copy 35
   3:number <- copy 36
-  stash [foo: ], 1:point-number/raw
+  stash [foo:], 1:point-number/raw
 ]
 +app: foo: 34 35 36
 
diff --git a/032array.cc b/032array.cc
index bf2ac8d4..62021466 100644
--- a/032array.cc
+++ b/032array.cc
@@ -92,7 +92,7 @@ recipe main [
   2:number <- copy 14
   3:number <- copy 15
   4:number <- copy 16
-  stash [foo: ], 1:array:number:3
+  stash [foo:], 1:array:number:3
 ]
 +app: foo: 3 14 15 16
 
diff --git a/043new.cc b/043new.cc
index 81bcb21e..a41f902f 100644
--- a/043new.cc
+++ b/043new.cc
@@ -350,7 +350,7 @@ long long int new_mu_string(const string& contents) {
 :(scenario stash_string)
 recipe main [
   x:address:array:character <- new [abc]
-  stash [foo: ], x:address:array:character
+  stash [foo:], x:address:array:character
 ]
 +app: foo: abc