diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-09-05 09:42:40 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-09-05 09:42:40 -0700 |
commit | 1a0890bade2d32a761f6379005fd22ca70af9c84 (patch) | |
tree | 20ca24d68afeb355897c9cb7d442d59ca6fe43a9 | |
parent | a3481777c6cbdb75e0db18ba7491e8baa2d21092 (diff) | |
download | mu-1a0890bade2d32a761f6379005fd22ca70af9c84.tar.gz |
2148
-rw-r--r-- | 044space.cc | 2 |
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; |