about summary refs log tree commit diff stats
path: root/repl.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-29 01:47:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-29 01:47:35 -0700
commit31e1feae425597c5c17f54af2e21b559caae4158 (patch)
tree6360be9a54d2f0ebb2b73a7a08d1216b408c9202 /repl.mu
parent80964951224af24407fc18a69f66fc7a7a03aaab (diff)
downloadmu-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.
Diffstat (limited to 'repl.mu')
-rw-r--r--repl.mu1
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