diff options
| author | Manuel Traut <manut@mecka.net> | 2010-02-16 01:18:36 +0100 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2010-02-16 01:18:36 +0100 |
| commit | 8ea65b5e890c9938262d70dd9b8ab111faa6ccc8 (patch) | |
| tree | d5c792192d4207460cbf96e06bc64a45bd1024e5 /cyr.c | |
| parent | 8fd86418e05384ce6fa4ca1818ab3a2162f1cc18 (diff) | |
fix the mapping of 'sch'
02/16/10 - 01:18:02 <Lida> das sind zwei unterschiedliche buchstaben..
02/16/10 - 01:18:02 <Lida> ш spricht man so aus "sch"
02/16/10 - 01:18:19 <Lida> und für ж gibt es im deutschen keinen laut
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'cyr.c')
| -rw-r--r-- | cyr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -118,14 +118,14 @@ int lookup_multi3 (wchar_t *str, int pos) { if ((str[pos] == 's') && (str[pos+1] == 'c') && (str[pos+2] == 'h')) { - wprintf(L"ж"); + wprintf(L"ш"); return 2; } if ((str[pos] == 'S') && ((str[pos+1] == 'C') || (str[pos+1] == 'c')) && ((str[pos+2] == 'H') || (str[pos+2] == 'h'))) { - wprintf(L"Ж"); + wprintf(L"Ш"); return 2; } return 0; |
