summaryrefslogtreecommitdiff
path: root/src/ctype/towctrans.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-10-25 12:20:22 -0400
committerRich Felker <dalias@aerifal.cx>2019-10-25 12:23:05 -0400
commite8aba58ab19a18f83d7f78e80d5e4f51e7e4e8a9 (patch)
treee512023caa6ee430952e48b0d0716a0d475fecf6 /src/ctype/towctrans.c
parent4fd0f2056082441a4503f6bfcb787a7c15754518 (diff)
downloadmusl-e8aba58ab19a18f83d7f78e80d5e4f51e7e4e8a9.tar.gz
add missing case mapping between U+03F3 and U+037F
somehow this seems to have been overlooked. add it now so that subsequent overhaul of case mapping implementation will not introduce a functional change at the same time.
Diffstat (limited to 'src/ctype/towctrans.c')
-rw-r--r--src/ctype/towctrans.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ctype/towctrans.c b/src/ctype/towctrans.c
index 8f681018..9b91b2de 100644
--- a/src/ctype/towctrans.c
+++ b/src/ctype/towctrans.c
@@ -176,6 +176,7 @@ static const unsigned short pairs[][2] = {
{ 0x243, 0x180 },
{ 0x244, 0x289 },
{ 0x245, 0x28c },
+ { 0x37f, 0x3f3 },
{ 0x3f4, 0x3b8 },
{ 0x3f9, 0x3f2 },
{ 0x3fd, 0x37b },