about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-31 23:44:52 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-01 00:11:31 -0700
commit87fbfc2d4607ff31d5b0b023f41d8ba439dd5958 (patch)
treec511ff6d2ea35991dca67f905559d81d6004b5a3 /011load.cc
parent4bbd3ded0b767ae0919551776e4c17189140e735 (diff)
downloadmu-87fbfc2d4607ff31d5b0b023f41d8ba439dd5958.tar.gz
1518 - still horribly broken
Just figured out why a first keystroke of backspace was sending me out
for a spin: run_interactive needs all early exits that don't actually
run anything to increment the current_step_index(). FML, this is lousy..
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/011load.cc b/011load.cc
index b779aa9e..94f73634 100644
--- a/011load.cc
+++ b/011load.cc
@@ -36,6 +36,7 @@ vector<recipe_number> load(istream& in) {
       }
       // todo: save user-defined recipes to mu's memory
       Recipe[Recipe_number[recipe_name]] = slurp_recipe(in);
+//?       cerr << Recipe_number[recipe_name] << ": " << recipe_name << '\n'; //? 1
       Recipe[Recipe_number[recipe_name]].name = recipe_name;
       // track added recipes because we may need to undo them in tests; see below
       recently_added_recipes.push_back(Recipe_number[recipe_name]);