Re: [racket] Discrepency in Commandline Documentation

2013-11-26 Thread Matthew Flatt
The `-i` flag does add a `(newline)` call after `(read-eval-print-loop)` returns; I'll fix the docs. Echoing of ^D, seems to be the same issue on my machine. With `-e "(read-eval-print-loop)"`, I see ^D appear and then get overwritten, but `-e "(begin (read-eval-print-loop) (newline))"` looks the

[racket] Discrepency in Commandline Documentation

2013-11-25 Thread Eric Dobson
The documention for the commandline racket implies that the following two command lines should have the same behavior. racket -v -e "(read-eval-print-loop)" racket -i -q But on my machine I'm seeing different behavior with regards to terminal settings. Without interactive mode I don't get the ech