1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

Distinguish between all codepoints and designated codepoints in char-sets

* libguile/unidata_to_charset.pl (designated): renamed from full

* libguile/srfi-14.c (scm_char_set_designated): new char-set

* libguile/srfi-14.i.c (cs_designated): renamed from cs_full
This commit is contained in:
Michael Gran 2009-09-03 08:23:24 -07:00
parent 0dcd7e6153
commit 719bb8cd5d
3 changed files with 20 additions and 6 deletions

View file

@ -6253,7 +6253,7 @@ scm_t_char_set cs_empty = {
cs_empty_ranges
};
scm_t_char_range cs_full_ranges[] = {
scm_t_char_range cs_designated_ranges[] = {
{0x0000, 0x0377}
,
{0x037a, 0x037e}
@ -7145,7 +7145,7 @@ scm_t_char_range cs_full_ranges[] = {
{0x100000, 0x10fffd}
};
scm_t_char_set cs_full = {
scm_t_char_set cs_designated = {
445,
cs_full_ranges
cs_designated_ranges
};