scribble/reader: allow escape character to be non-ASCII
original commit: 96c5521196dc1fe19c401950775b2c8f8e80991f
This commit is contained in:
parent
4ab5a49c99
commit
6d84b17b7c
|
@ -198,7 +198,7 @@ Useful for implementing languages that are textual by default (see
|
||||||
|
|
||||||
@defproc[(make-at-readtable
|
@defproc[(make-at-readtable
|
||||||
[#:readtable readtable readtable? (current-readtable)]
|
[#:readtable readtable readtable? (current-readtable)]
|
||||||
[#:command-char command-char character? #\@]
|
[#:command-char command-char char? #\@]
|
||||||
[#:datum-readtable datum-readtable
|
[#:datum-readtable datum-readtable
|
||||||
(or/c readtable? boolean?
|
(or/c readtable? boolean?
|
||||||
(readtable? . -> . readtable?))
|
(readtable? . -> . readtable?))
|
||||||
|
|
15
collects/tests/scribble/docs/diamond.rkt
Normal file
15
collects/tests/scribble/docs/diamond.rkt
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#lang racket/base
|
||||||
|
(require (only-in scribble/reader make-at-readtable))
|
||||||
|
|
||||||
|
(provide (rename-out [diamond-read read]
|
||||||
|
[diamond-read-syntax read-syntax]))
|
||||||
|
|
||||||
|
(define diamond-readtable (make-at-readtable #:command-char #\◇))
|
||||||
|
|
||||||
|
(define (diamond-read p)
|
||||||
|
(parameterize ([current-readtable diamond-readtable])
|
||||||
|
(read p)))
|
||||||
|
|
||||||
|
(define (diamond-read-syntax name p)
|
||||||
|
(parameterize ([current-readtable diamond-readtable])
|
||||||
|
(read-syntax name p)))
|
14
collects/tests/scribble/docs/diamond.scrbl
Normal file
14
collects/tests/scribble/docs/diamond.scrbl
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#lang scribble/base
|
||||||
|
@#reader "diamond.rkt"
|
||||||
|
|
||||||
|
◇begin{
|
||||||
|
|
||||||
|
This example checks that @ is not an escape character
|
||||||
|
if we make a reader that uses a different escape character.
|
||||||
|
|
||||||
|
◇(define ch "diamond")
|
||||||
|
|
||||||
|
It also makes sure that a non-ASCII character like ◇ch
|
||||||
|
is ok as an escape character.
|
||||||
|
|
||||||
|
}
|
5
collects/tests/scribble/docs/diamond.txt
Normal file
5
collects/tests/scribble/docs/diamond.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
This example checks that @ is not an escape character if we make a
|
||||||
|
reader that uses a different escape character.
|
||||||
|
|
||||||
|
It also makes sure that a non-ASCII character like diamond is ok as an
|
||||||
|
escape character.
|
Loading…
Reference in New Issue
Block a user