SJIS encoding don't have single byte characters >= 224

MFC after:      1 week
This commit is contained in:
Andrey A. Chernov 2016-04-04 15:56:14 +00:00
parent bc5a80161c
commit ae7abb26b1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=297557

View File

@ -83,7 +83,7 @@ _MSKanji_init(struct xlocale_ctype *l, _RuneLocale *rl)
l->__mbsinit = _MSKanji_mbsinit;
l->runes = rl;
l->__mb_cur_max = 2;
l->__mb_sb_limit = 256;
l->__mb_sb_limit = 224;
return (0);
}