about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--049continuation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/049continuation.cc b/049continuation.cc
index 6af5efef..5ab2c233 100644
--- a/049continuation.cc
+++ b/049continuation.cc
@@ -45,7 +45,7 @@ case CONTINUE_FROM: {
   Current_routine->calls = Continuation[c];  // deep copy because calls have no pointers
   // refresh instruction_counter to next instruction after current-continuation
   instruction_counter = current_step_index()+1;
-  continue;  // skip the rest of this instruction
+  continue;  // not done with caller; don't increment current_step_index()
 }
 
 :(scenario continuation)