This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Add transliteration data for "LATIN SMALL LETTER O WITH STROKE" (Ã)


Currently, glibc has no transliteration entry for the "LATIN SMALL
LETTER O WITH STROKE" and "LATIN CAPITAL LETTER O WITH STROKE" code
points, which are commonly used in Danish. This patch against the git
master branch adds that to the translit_combining file (Ã -> oe, Ã ->
OE).

Also posted to bugzilla at
http://sourceware.org/bugzilla/show_bug.cgi?id=15593. Based on related
patch for the Norwegian locale (see
http://sourceware.org/bugzilla/show_bug.cgi?id=89).

-Toke


diff --git a/localedata/locales/translit_combining b/localedata/locales/translit_combining
index 44c62f9..97527e6 100644
--- a/localedata/locales/translit_combining
+++ b/localedata/locales/translit_combining
@@ -298,6 +298,8 @@ translit_start
 <U00D5> <U004F>
 % LATIN CAPITAL LETTER O WITH DIAERESIS
 <U00D6> <U004F>
+% LATIN CAPITAL LETTER O WITH STROKE -> "OE"
+<U00D8> "<U004F><U0338>";"<U004F><U0045>"
 % LATIN CAPITAL LETTER U WITH GRAVE
 <U00D9> <U0055>
 % LATIN CAPITAL LETTER U WITH ACUTE
@@ -350,6 +352,8 @@ translit_start
 <U00F5> <U006F>
 % LATIN SMALL LETTER O WITH DIAERESIS
 <U00F6> <U006F>
+% LATIN SMALL LETTER O WITH STROKE -> "oe"
+<U00F8> "<U006F><U0338>";"<U006F><U0065>"
 % LATIN SMALL LETTER U WITH GRAVE
 <U00F9> <U0075>
 % LATIN SMALL LETTER U WITH ACUTE


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]