added cp949 and cp950.

deleted win32 target files for watcom. too difficult to maintain.
added cmgr for cp949 and cp950.
This commit is contained in:
2012-02-24 09:09:45 +00:00
parent 64fbfed781
commit d7c5e50364
37 changed files with 96662 additions and 2985 deletions

View File

@ -28,7 +28,7 @@ static const qse_char_t* assop_str[] =
QSE_T("-="),
QSE_T("*="),
QSE_T("/="),
QSE_T("//="),
QSE_T("\\="),
QSE_T("%="),
QSE_T("**="),
QSE_T(">>="),
@ -62,7 +62,7 @@ static const qse_char_t* binop_str[][2] =
{ QSE_T("-"), QSE_T("-") },
{ QSE_T("*"), QSE_T("*") },
{ QSE_T("/"), QSE_T("/") },
{ QSE_T("//"), QSE_T("//") },
{ QSE_T("\\"), QSE_T("\\") },
{ QSE_T("%"), QSE_T("%") },
{ QSE_T("**"), QSE_T("**") },