about summary refs log tree commit diff stats
path: root/049continuation.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-24 15:28:09 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-24 15:28:09 -0700
commit8156110ea633b7375096ab98be85254f00f6b0b2 (patch)
tree5068af20209c14a305a91bf6b232affc1330f0ac /049continuation.cc
parent1c404654a34f507822a64b3cab8f2c0fb71ed774 (diff)
downloadmu-8156110ea633b7375096ab98be85254f00f6b0b2.tar.gz
1450
Diffstat (limited to '049continuation.cc')
-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)