Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unicode::UCD Handle properties that have no code points #23134

Open
wants to merge 3 commits into
base: blead
Choose a base branch
from

Conversation

khwilliamson
Copy link
Contributor

This has long been done for matching properties. But it has never
happened before Unicode 16.0 that an entire mapping property would have
no code points.

  • This set of changes does not require a perldelta entry.

A new property is being added that needs the same special handling as a
similar existing one
Like using \z instead of $, and some were missing.

Spotted by Lukas Mai
This situation had not come up before Unicode 16.0
@@ -4180,7 +4180,9 @@ RETRY:
} # End of loop constructing the converted list

# Finish up the data structure for our converted swash
my $type = ($second_try eq 'nfkccf') ? 'ToNFKCCF' : 'ToDm';
my $type = ($second_try =~ / ^ ( nfkcs?cf ) \z /x)
? 'To' . $1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be 'To' . uc($1)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants