utf8.c: Use proper Unicode property names
authorKarl Williamson <public@khwilliamson.com>
Sat, 5 Nov 2011 17:31:47 +0000 (11:31 -0600)
committerKarl Williamson <public@khwilliamson.com>
Tue, 8 Nov 2011 15:09:35 +0000 (08:09 -0700)
commit7dd21db75abd139d2252f64cb3ffa894adafa936
tree79d973c4eba6fc21141b1f5ae5c03e608dedf1c5
parentcf2cd801df57e52b944bd235f6e703e099c0a02d
utf8.c: Use proper Unicode property names

There are five functions in utf8.c that look up Unicode maps--the case
changing functions.  They look up these maps under the names ToDigit,
ToFold, ToLower, ToTitle, and ToUpper.  The imminent expansion of Unicode::UCD
to return the mappings for all properties creates a naming conflict, as
three of those names are the same as other properties, Upper, Lower, and
Title.

It was an unfortunate choice of names originally.  Now mktables has been
changed to create a list of mapping properties that utf8_heavy.pl reads.
It uses the official names of those properties, so change utf8.c to
correspond.
utf8.c