about summary refs log tree commit diff stats
path: root/037call_reply.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-03 18:00:11 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-03 18:00:11 -0700
commit1066660e66fd08f608b24426abf7ad60b3a5b566 (patch)
tree49dd035198bdc59f2c489b57a0c36997c01b85c8 /037call_reply.cc
parentae496d70be94f8ffa363ae1612aa3cbfbaca11b8 (diff)
downloadmu-1066660e66fd08f608b24426abf7ad60b3a5b566.tar.gz
1523
Variable 'instruction_counter' was obfuscating more than it clarified.
Diffstat (limited to '037call_reply.cc')
-rw-r--r--037call_reply.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/037call_reply.cc b/037call_reply.cc
index 7e973ed3..951e6a6b 100644
--- a/037call_reply.cc
+++ b/037call_reply.cc
@@ -43,9 +43,7 @@ case REPLY: {
         raise << "'same-as-ingredient' result " << caller_instruction.products.at(i).value << " must be location " << caller_instruction.ingredients.at(ingredient_index).value << '\n';
     }
   }
-  // refresh instruction_counter to caller's step_index
-  instruction_counter = current_step_index();
-  break;
+  break;  // continue to process rest of *caller* instruction
 }
 
 //: Products can include containers and exclusive containers, addresses and arrays.