about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-23 17:58:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-23 17:58:10 -0700
commit50eab110e81f6f82a00a9eb7d87ccedd3697cfd3 (patch)
tree51d2a8d978ce798b9539ee3f555ff084c06e4ac0 /043space.cc
parente00ddbeb372f9b92e3c9a430818ee8a0d0848064 (diff)
downloadmu-50eab110e81f6f82a00a9eb7d87ccedd3697cfd3.tar.gz
1444
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/043space.cc b/043space.cc
index e1100f89..37117439 100644
--- a/043space.cc
+++ b/043space.cc
@@ -42,8 +42,8 @@ if (s == "default-space") return true;
 //:: now implement space support
 :(before "End call Fields")
 long long int default_space;
-:(replace "call(recipe_number r) :running_recipe(r)")
-call(recipe_number r) :running_recipe(r), running_step_index(0), next_ingredient_to_process(0), default_space(0) {}
+:(before "End call Constructor")
+default_space = 0;
 
 :(replace "reagent r = x" following "reagent canonize(reagent x)")
 reagent r = absolutize(x);