about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-01-27 23:55:47 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-01-27 23:55:47 -0800
commit12d7cee846eac0b1d6f05e6d78036ace04728b94 (patch)
treebb652782cbf81c614ef91e74c79dd003ec355d6d
parentb24bb7dafd4ca97df92c615b978121ca46b543d6 (diff)
downloadmu-12d7cee846eac0b1d6f05e6d78036ace04728b94.tar.gz
647 - bugfix
-rw-r--r--color-repl.mu3
1 files changed, 2 insertions, 1 deletions
diff --git a/color-repl.mu b/color-repl.mu
index 60b1f8c0..442f3f60 100644
--- a/color-repl.mu
+++ b/color-repl.mu
@@ -140,7 +140,8 @@
       ; if we erase start of string, return
       ; test: "<backspace>34
       (string-deleted?:boolean <- lesser-or-equal len:integer-address/deref orig-len:integer)
-      (jump-unless string-deleted?:boolean end:offset)
+;?       (print-primitive-to-host string-deleted?:boolean) ;? 1
+      (jump-if string-deleted?:boolean end:offset)
       (jump next-key-in-string:offset)
     }
     (result:buffer-address <- append result:buffer-address c:character)