diff options
Diffstat (limited to 'src/ctype/isgraph.c')
-rw-r--r-- | src/ctype/isgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c index 206a09b7..ecf88a34 100644 --- a/src/ctype/isgraph.c +++ b/src/ctype/isgraph.c @@ -14,7 +14,7 @@ int isgraph(int c) RETURN(0, ARGUMENT(c) is not a graphic character); */ - return map[c] & ~CT_SPACE; + return map[c] & CT_GRAPH; } /*** |