diff options
Diffstat (limited to '037recipe.cc')
-rw-r--r-- | 037recipe.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/037recipe.cc b/037recipe.cc index c3f258da..f7dd62d7 100644 --- a/037recipe.cc +++ b/037recipe.cc @@ -43,11 +43,11 @@ Recipe_ordinal["call"] = CALL; :(before "End Primitive Recipe Checks") case CALL: { if (inst.ingredients.empty()) { - raise << maybe(Recipe[r].name) << "'call' requires at least one ingredient (the recipe to call)\n" << end(); + raise_error << maybe(Recipe[r].name) << "'call' requires at least one ingredient (the recipe to call)\n" << end(); break; } if (!is_mu_scalar(inst.ingredients.at(0))) { - raise << maybe(Recipe[r].name) << "first ingredient of 'call' should be a recipe, but got " << inst.ingredients.at(0).original_string << '\n' << end(); + raise_error << maybe(Recipe[r].name) << "first ingredient of 'call' should be a recipe, but got " << inst.ingredients.at(0).original_string << '\n' << end(); break; } break; |