diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-10-09 16:44:11 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-10-09 16:44:11 -0400 |
commit | 9b03d0709c9f5d2d2e9891f1c3cce3638ff76a27 (patch) | |
tree | ef5913d42c4278ded7e6bea8b5fc4e988e53a63d | |
parent | bb19ff7efaa576704cca28858e6a3dc4acdd6e0a (diff) |
async-repl: Remove 'pk' that was accidentally left in.
-rw-r--r-- | chickadee/async-repl.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chickadee/async-repl.scm b/chickadee/async-repl.scm index 328e8f8..87f186d 100644 --- a/chickadee/async-repl.scm +++ b/chickadee/async-repl.scm @@ -108,7 +108,6 @@ (let ((c (peek-char))) (cond ((eof-object? c) ; end of file - (pk 'eof) (read-char) *unspecified*) ((eqv? c #\,) ; metacommand |