about summary refs log tree commit diff stats
path: root/044space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-05 09:42:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-05 09:42:40 -0700
commit1a0890bade2d32a761f6379005fd22ca70af9c84 (patch)
tree20ca24d68afeb355897c9cb7d442d59ca6fe43a9 /044space.cc
parenta3481777c6cbdb75e0db18ba7491e8baa2d21092 (diff)
downloadmu-1a0890bade2d32a761f6379005fd22ca70af9c84.tar.gz
2148
Diffstat (limited to '044space.cc')
-rw-r--r--044space.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/044space.cc b/044space.cc
index 71cd4196..737e80b9 100644
--- a/044space.cc
+++ b/044space.cc
@@ -52,7 +52,7 @@ reagent absolutize(reagent x) {
   if (is_raw(x) || is_dummy(x)) return x;
   if (x.name == "default-space") return x;
   if (!x.initialized) {
-    raise << current_instruction().to_string() << ": reagent not initialized: " << x.original_string << end();
+    raise << current_instruction().to_string() << ": reagent not initialized: " << x.original_string << '\n' << end();
     return x;
   }
   reagent r = x;
href='#n133'>133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203