Undo r302599 and partially r302594 case 2):

since WCHAR_MAX can be not a valid wchar value, it is easier to stay
inside wint_t.
This commit is contained in:
ache 2016-07-12 04:29:34 +00:00
parent 23a48963e2
commit afac321c9f

View File

@ -266,7 +266,7 @@ endloop:
*/
s2.str = argv[1];
s2.state = NORMAL;
for (cnt = 0; cnt <= (wint_t)WCHAR_MAX; cnt++) {
for (cnt = 0; cnt <= WINT_MAX; cnt++) {
if (Cflag && !iswrune(cnt))
continue;
if (cmap_lookup(map, cnt) == OOBCH) {