From 8ea65b5e890c9938262d70dd9b8ab111faa6ccc8 Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Tue, 16 Feb 2010 01:18:36 +0100 Subject: fix the mapping of 'sch' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 02/16/10 - 01:18:02 das sind zwei unterschiedliche buchstaben.. 02/16/10 - 01:18:02 ш spricht man so aus "sch" 02/16/10 - 01:18:19 und für ж gibt es im deutschen keinen laut Signed-off-by: Manuel Traut --- cyr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cyr.c') diff --git a/cyr.c b/cyr.c index a7e0abe..24921ff 100644 --- a/cyr.c +++ b/cyr.c @@ -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; -- cgit v1.2.3