about summary refs log tree commit diff stats
path: root/cpp/020call
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-15 08:41:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-15 08:41:23 -0700
commiteb7afe5d4337637e86e27a01562c08de96dd5be1 (patch)
tree73ac83e23358e67c124879451f89ddc71d2bb3a5 /cpp/020call
parent275de0a1ced166edef6f48ab69f420d1fff77e5b (diff)
downloadmu-eb7afe5d4337637e86e27a01562c08de96dd5be1.tar.gz
926
Diffstat (limited to 'cpp/020call')
-rw-r--r--cpp/020call2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/020call b/cpp/020call
index c12517c9..ef15ee94 100644
--- a/cpp/020call
+++ b/cpp/020call
@@ -13,7 +13,7 @@ size_t next_ingredient_to_process;
 :(replace{} "call(recipe_number r)")
 call(recipe_number r) :running_recipe(r), pc(0), next_ingredient_to_process(0) {}
 
-:(replace{} "End Primitive Recipe Implementations." then "default:")
+:(replace{} "default:" following "End Primitive Recipe Implementations.")
 default: {
   // not a primitive; try to look for a matching recipe
   if (Recipe.find(instructions[pc].operation) == Recipe.end()) {