unicode-data-packages.scm 580 B

1234567891011121314151617
  1. ; Copyright (c) 1993-2008 by Richard Kelsey and Jonathan Rees. See file COPYING.
  2. (define-structure unicode-data (export create-unicode-tables)
  3. (open scheme
  4. finite-types destructuring define-record-types bitwise tables
  5. (subset srfi-13 (string-contains
  6. string-index string-prefix? string-suffix? string-skip
  7. string-trim-both))
  8. (subset srfi-14 (char-set:hex-digit char-set:whitespace))
  9. (subset srfi-1 (iota find filter-map))
  10. srfi-23 ; ERROR
  11. sort
  12. )
  13. (files "../big/compact-table.scm" ; so we run on older Scheme 48
  14. "../env/unicode-category.scm"
  15. unicode-data))