diff options
-rw-r--r-- | 011load.cc | 1 | ||||
-rw-r--r-- | 059shape_shifting_recipe.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/011load.cc b/011load.cc index 4783c324..edde4044 100644 --- a/011load.cc +++ b/011load.cc @@ -43,6 +43,7 @@ vector<recipe_ordinal> load(istream& in) { long long int slurp_recipe(istream& in) { recipe result; result.name = next_word(in); + // End Load Recipe Name skip_whitespace_but_not_newline(in); // End Recipe Refinements if (result.name.empty()) diff --git a/059shape_shifting_recipe.cc b/059shape_shifting_recipe.cc index dbc7de2b..ed6d66b7 100644 --- a/059shape_shifting_recipe.cc +++ b/059shape_shifting_recipe.cc @@ -63,7 +63,7 @@ Recently_added_shape_shifting_recipes.clear(); :(before "End recipe Fields") string original_name; //: original name is only set during load -:(before "End Recipe Refinements") +:(before "End Load Recipe Name") result.original_name = result.name; :(after "Static Dispatch Phase 2") |