
using keywords, and allowing arbitrary code in the reader module * Added tests for the new functionality * Used the new stuff for the r5rs, r6rs, and honu readers svn: r11495
11 lines
314 B
Scheme
11 lines
314 B
Scheme
#lang s-exp syntax/module-reader
|
|
|
|
r5rs
|
|
|
|
#:wrapper1 (lambda (t)
|
|
(parameterize ([read-case-sensitive #f]
|
|
[read-accept-infix-dot #f]
|
|
[read-curly-brace-as-paren #f]
|
|
[read-square-bracket-as-paren #f])
|
|
(t)))
|