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;