diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-29 01:47:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-29 01:47:35 -0700 |
commit | 31e1feae425597c5c17f54af2e21b559caae4158 (patch) | |
tree | 6360be9a54d2f0ebb2b73a7a08d1216b408c9202 | |
parent | 80964951224af24407fc18a69f66fc7a7a03aaab (diff) | |
download | mu-31e1feae425597c5c17f54af2e21b559caae4158.tar.gz |
1512
As expected, I've already found two bugs in the repl during manual testing. Still don't have a good characterization of when things go off the rails. But certainly hitting backspace too many times isn't messing things up as I'd feared. Which might also be a bug, if the program isn't behaving as I expect.
-rw-r--r-- | repl.mu | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/repl.mu b/repl.mu index ad98624f..383aa406 100644 --- a/repl.mu +++ b/repl.mu @@ -116,7 +116,6 @@ recipe slurp-regular-characters [ # append result:address:buffer <- buffer-append result:address:buffer, c:character # backspace? decrement and maybe return - # todo: repl will exit if user types too many backspaces { backspace?:boolean <- equal c:character, 8:literal/backspace break-unless backspace?:boolean |