diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-24 15:28:09 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-24 15:28:09 -0700 |
commit | 8156110ea633b7375096ab98be85254f00f6b0b2 (patch) | |
tree | 5068af20209c14a305a91bf6b232affc1330f0ac | |
parent | 1c404654a34f507822a64b3cab8f2c0fb71ed774 (diff) | |
download | mu-8156110ea633b7375096ab98be85254f00f6b0b2.tar.gz |
1450
-rw-r--r-- | 049continuation.cc | 2 |
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) |