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 16:10:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-24 16:10:54 -0700
commit3cc03971389f3c1b330f5a6c161faf4883021e8e (patch)
treec2809c78c5642d490d76d26e0091dfaef91c6064 /049continuation.cc
parent7202d5b54da770850efe80c84c62b62531dc8846 (diff)
downloadmu-3cc03971389f3c1b330f5a6c161faf4883021e8e.tar.gz
1453
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 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)