about summary refs log tree commit diff stats
path: root/044space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-23 23:27:36 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-23 23:27:36 -0700
commit93b7d98351cd7e090dd9a37f2786f4f0758c2c6e (patch)
treed897f40770e7b5ff701b644c3ed9810ff243a9b0 /044space.cc
parent235958e8b9c29e1bb4138e912d443daeaae5afcb (diff)
downloadmu-93b7d98351cd7e090dd9a37f2786f4f0758c2c6e.tar.gz
1830
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 40f0f5ba..557ee04c 100644
--- a/044space.cc
+++ b/044space.cc
@@ -52,7 +52,7 @@ reagent absolutize(reagent x) {
 //?   cout << "absolutize " << x.to_string() << '\n'; //? 4
   if (is_raw(x) || is_dummy(x)) return x;
   if (!x.initialized)
-    raise << current_instruction().to_string() << ": reagent not initialized: " << x.to_string() << die();
+    raise << current_instruction().to_string() << ": reagent not initialized: " << x.original_string << die();
   reagent r = x;
   r.set_value(address(r.value, space_base(r)));
   r.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));