From 83266c767d1a785e864b4d6b5a8545a3b1aba2db Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 23 Feb 2016 15:53:47 -0800 Subject: 2693 I noticed while teaching Ella that when mu encountered a missing recipe it failed to find *any* recipes after that point, leading to a lot of spurious errors. Now fixed. --- 013update_operation.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/013update_operation.cc b/013update_operation.cc index 63f4586e..da18252d 100644 --- a/013update_operation.cc +++ b/013update_operation.cc @@ -14,7 +14,7 @@ void update_instruction_operations(recipe_ordinal r) { if (inst.is_label) continue; if (!contains_key(Recipe_ordinal, inst.name)) { raise_error << maybe(caller.name) << "instruction " << inst.name << " has no recipe\n" << end(); - return; + continue; } inst.operation = get(Recipe_ordinal, inst.name); // End Instruction Operation Checks -- cgit 1.4.1-2-gfad0