[racket-users] Changing reader parameters from within a reader extension

2015-11-02 Thread Alexis King
Hi all, I’m continuing to implement R7RS in Racket, and I think I’ve gotten most of the way aside from the various reader differences. The trickiest thing seems to be the #!fold-case and #!no-fold-case directives, which adjust the case-sensitivity of the reader as a side-effect. I’ve

Re: [racket-users] Changing reader parameters from within a reader extension

2015-11-02 Thread Matthew Flatt
I see that the documentation for Racket's `read` and `read-syntax` needs to be adjusted to say that the values of various parameters are relevant only when the `read` or `read-syntax` starts. (Trying to make them adapt dynamically in general would be impractical, I think; a custom port's