Fix it for chars with 8bit set

This commit is contained in:
Andrey A. Chernov 1995-10-23 20:49:58 +00:00
parent a409ec1917
commit 7f3f016d8c

View File

@ -51,7 +51,7 @@ vis(dst, c, flag, nextc)
int c, nextc;
register int flag;
{
if ((u_int)c <= UCHAR_MAX && isgraph(c) ||
if (isgraph(c) ||
((flag & VIS_SP) == 0 && c == ' ') ||
((flag & VIS_TAB) == 0 && c == '\t') ||
((flag & VIS_NL) == 0 && c == '\n') ||