hyper-literate/collects/readline/rep.ss
Robby Findler 9e5d391dfb ...
original commit: 66a62c2f50bd2b8c85867be3e415c6a0b3881f20
2000-05-25 15:55:50 +00:00

11 lines
287 B
Scheme

(current-prompt-read
(let ([read (require-library "pread.ss" "readline")]
[orig-read (current-prompt-read)]
[orig-input (current-input-port)])
(lambda ()
(if (eq? (current-input-port) orig-input)
(read (lambda (n) (if (zero? n) "> " " ")))
(orig-read)))))