Add reader flags from John

Any mistakes transcription are my fault.
This commit is contained in:
Lassi Kortela 2020-08-17 20:31:02 +03:00
parent 8f905f3c2f
commit d523f564aa
2 changed files with 19 additions and 1 deletions

View File

@ -22,6 +22,10 @@
(role keyword)
(description "start keyword arguments in lambda list [DSSSL]")
(id larceny)
(role directive)
(description "implies #!no-fold-case and #!err5rs [Larceny]")
(id no-fold-case)
(role directive)
(description "change to case sensitive identifiers [R7RS]")
@ -34,13 +38,21 @@
(role keyword)
(description "start optional arguments in lambda list [DSSSL]")
(id err5rs)
(role directive)
(description "change to R7RS/R6RS syntax with extensions [Larceny]")
(id r5rs)
(role directive)
(description "change to R7RS syntax with #!fold-case [Larceny]")
(id r6rs)
(role directive)
(description "change to R6RS read syntax [R6RS]")
(id r7rs)
(role directive)
(description "change to R7RS read syntax")
(description "change to R7RS syntax with #!no-fold-case [Gauche, Larceny]")
(id rest)
(role keyword)

View File

@ -58,6 +58,12 @@
(id "#b")
(description "Binary integer [R2RS+]")
(id "#ci")
(description "Change to case insensitive identifiers [Chicken]")
(id "#cs")
(description "Change to case sensitive identifiers [Chicken]")
(id "#d")
(description "Decimal number [R2RS+]")