diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e6f104d091..d0072e4cc9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,17 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-11-19 18:14 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * source/codepage/cpuakoi.c + ! Fixed CP reference to point to KOI8-U instead of KOI8. + Reasons: 1) KOI8-U was used in the _comment_. + 2) Ukrainian quasi standard is KOI8-U instead of KOI8. + http://aspell.net/charsets/cyrillic.html + 3) CP KOI8-U wasn't used previously anywhere, yet + was added by same author. + I hope the author (Pavel Tsarenko) will be able to verify + this change. + 2008-11-19 13:51 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * common.mak * make_b32.mak diff --git a/harbour/source/codepage/cpuakoi.c b/harbour/source/codepage/cpuakoi.c index 2a6ea175ad..b57af506f1 100644 --- a/harbour/source/codepage/cpuakoi.c +++ b/harbour/source/codepage/cpuakoi.c @@ -52,14 +52,14 @@ /* Language name: Ukrainian */ /* ISO language code (2 chars): UA */ -/* Codepage: KOI-8U */ +/* Codepage: KOI8-U */ #include #include "hbapi.h" #include "hbapicdp.h" static HB_CODEPAGE s_codepage = { "UAKOI8", - HB_CPID_KOI_8,HB_UNITB_KOI_8,36, + HB_CPID_KOI_8U, HB_UNITB_KOI_8U, 36, "áâ÷çäå³´öúé¶·êëìíîïðòóôõæèãþûýÿùøüàñ", "ÁÂ×ÇÄÅ£¤ÖÚɦ§ÊËÌÍÎÏÐÒÓÔÕÆÈÃÞÛÝßÙØÜÀÑ", 0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL };