Fix iswgraph unicode support.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-10-24 16:05:19 +02:00
parent bae08f13ef
commit 91087d9199
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2015.
This file is part of the Sortix C Library.
@ -26,5 +26,5 @@
extern "C" int iswgraph(wint_t c)
{
return L'!' <= c && c <= L'~';
return L'!' <= c && c != 127;
}