about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-01-28 00:06:03 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-01-28 00:06:03 -0800
commita3a488f96f0dbd78093a18b258363b406231b7f7 (patch)
treebc6da91da2ef1401f93035fa56e2070aa66e8add
parentdc9eb7f712c6088548297521e608445f5d09dc81 (diff)
downloadmu-a3a488f96f0dbd78093a18b258363b406231b7f7.tar.gz
650
Another spot to fix 647.
-rw-r--r--color-repl.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/color-repl.mu b/color-repl.mu
index ef13c5ce..143d7e5b 100644
--- a/color-repl.mu
+++ b/color-repl.mu
@@ -118,7 +118,7 @@
       (len:integer-address/deref <- subtract len:integer-address/deref 1:literal)
       ; if we erase start of comment, return
       (comment-deleted?:boolean <- lesser-or-equal len:integer-address/deref orig-len:integer)
-      (jump-unless comment-deleted?:boolean end:offset)
+      (jump-if comment-deleted?:boolean end:offset)
       (jump next-key-in-comment:offset)
     }
     (result:buffer-address <- append result:buffer-address c:character)