Add Chez extensions to character-name

Reference: https://cisco.github.io/ChezScheme/csug9.5/objects.html

Signed-off-by: Masanori Ogino <masanori.ogino@gmail.com>
This commit is contained in:
Masanori Ogino 2022-06-13 08:20:06 +09:00 committed by lassik
parent 2d8ea410f9
commit 554abaab9b
1 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,9 @@
(string-escape "\\b")
(description "U+0008 [R6RS, R7RS]")
(id bel)
(description "U+0007 [Chez Scheme]")
(id delete)
(description "U+007F [R6RS, R7RS]")
@ -19,6 +22,12 @@
(string-escape "\\n")
(description "U+000A [R6RS]")
(id ls)
(description "U+2028 [Chez Scheme]")
(id nel)
(description "U+0085 [Chez Scheme]")
(id newline)
(string-escape "\\n")
(description "U+000A [R6RS, R7RS]")
@ -36,6 +45,9 @@
(string-escape "\\r")
(description "U+000D [R6RS, R7RS]")
(id rubout)
(description "U+007F [Chez Scheme]")
(id space)
(description "U+0020 [R6RS, R7RS]")
@ -43,5 +55,8 @@
(string-escape "\\t")
(description "U+0009 [R6RS, R7RS]")
(id vt)
(description "U+000B [Chez Scheme]")
(id vtab)
(description "U+000B [R6RS]")