From 554abaab9b6c0f4a804663ac1e549e8f7d789ceb Mon Sep 17 00:00:00 2001 From: Masanori Ogino Date: Mon, 13 Jun 2022 08:20:06 +0900 Subject: [PATCH] Add Chez extensions to character-name Reference: https://cisco.github.io/ChezScheme/csug9.5/objects.html Signed-off-by: Masanori Ogino --- character-name.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/character-name.scm b/character-name.scm index 4f20591..9909b5e 100644 --- a/character-name.scm +++ b/character-name.scm @@ -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]")