diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-24 16:10:54 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-24 16:10:54 -0700 |
commit | 3cc03971389f3c1b330f5a6c161faf4883021e8e (patch) | |
tree | c2809c78c5642d490d76d26e0091dfaef91c6064 | |
parent | 7202d5b54da770850efe80c84c62b62531dc8846 (diff) | |
download | mu-3cc03971389f3c1b330f5a6c161faf4883021e8e.tar.gz |
1453
-rw-r--r-- | 049continuation.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/049continuation.cc b/049continuation.cc index 071d0e63..ac4a1cf7 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; // not done with caller; don't increment current_step_index() + continue; // not done with caller; don't increment current_step_index() further } :(scenario continuation) |