From: Chris Hanson <org/chris-hanson/cph>
Date: Mon, 27 Feb 2017 07:07:16 +0000 (-0800)
Subject: Include and export cased table.
X-Git-Tag: mit-scheme-pucked-9.2.12~198^2~18
X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=56cb4dfd389edcf8d4d865301235d1af10ef6e8d;p=mit-scheme.git

Include and export cased table.
---

diff --git a/src/runtime/runtime.pkg b/src/runtime/runtime.pkg
index f9ebbcf7b..8bef04f12 100644
--- a/src/runtime/runtime.pkg
+++ b/src/runtime/runtime.pkg
@@ -1296,6 +1296,7 @@ USA.
 
 (define-package (runtime ucd-tables)
   (files "ucd-table-alpha"
+	 "ucd-table-cased"
 	 "ucd-table-ccc"
 	 "ucd-table-cf"
 	 "ucd-table-cwcf"
@@ -1319,10 +1320,12 @@ USA.
   (parent (runtime))
   (export ()
 	  char-alphabetic?
+	  char-cased?
 	  char-lower-case?
 	  char-upper-case?
 	  char-whitespace?
 	  char-set:alphabetic
+	  char-set:cased
 	  char-set:lower-case
 	  char-set:upper-case
 	  char-set:whitespace)