about summary refs log tree commit diff stats
path: root/028assert.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-25 00:02:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-25 00:02:20 -0700
commit35064671ef90ec6e35eafd9b15363058bf4f23f4 (patch)
tree3a0b4b02cbdd1b304deb52d1673083091a1ed12d /028assert.cc
parenta17fd65ca0124f544bd4de844f1bfe2d91b46ae6 (diff)
downloadmu-35064671ef90ec6e35eafd9b15363058bf4f23f4.tar.gz
1844 - explicitly end each trace line
More verbose, but it saves trouble when debugging; there's never
something you thought should be traced but just never came out the other
end.

Also got rid of fatal errors entirely. Everything's a warning now, and
code after a warning isn't guaranteed to run.
Diffstat (limited to '028assert.cc')
-rw-r--r--028assert.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/028assert.cc b/028assert.cc
index f864d43e..07f68cc8 100644
--- a/028assert.cc
+++ b/028assert.cc
@@ -15,7 +15,7 @@ case ASSERT: {
   assert(scalar(ingredients.at(0)));
   if (!ingredients.at(0).at(0)) {
     assert(is_literal(current_instruction().ingredients.at(1)));
-    raise << current_instruction().ingredients.at(1).name << '\n' << die();
+    raise << current_instruction().ingredients.at(1).name << '\n' << end();
   }
   break;
 }