diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-01-27 16:16:54 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-01-27 16:16:54 -0800 |
commit | 0943c85d6b6f8291b881aa9aee818bf7de66f79e (patch) | |
tree | d505f677fcc002051661bd15c5592cbc983abed4 | |
parent | e5756fbef85f4ab29370da16ef533c770e0dabc2 (diff) | |
download | mu-0943c85d6b6f8291b881aa9aee818bf7de66f79e.tar.gz |
639
-rw-r--r-- | color-repl.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/color-repl.mu b/color-repl.mu index 51ba263a..2b3712fd 100644 --- a/color-repl.mu +++ b/color-repl.mu @@ -7,7 +7,7 @@ { begin (c:character <- $wait-for-key-from-host) ; handle backspace - ; todo: backspace into comment or string + ; todo: backspace into comment or string; backspace past newline { begin (backspace?:boolean <- equal c:character ((#\backspace literal))) (break-unless backspace?:boolean) |