add some more cset encoding support

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23989 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-10-29 09:17:05 +00:00
parent 55c596a150
commit c22b722f1f
6 changed files with 76 additions and 9 deletions

View file

@ -613,7 +613,7 @@ uni_toupper(unichar ch)
}
unsigned char
uni_cop(unichar u)
GSPrivateUniCop(unichar u)
{
if (u < uni_cop_table[0].code)
{
@ -658,6 +658,12 @@ uni_cop(unichar u)
}
}
unsigned char
uni_cop(unichar u)
{
return GSPrivateUniCop(u);
}
BOOL
uni_isnonsp(unichar u)
{
@ -669,7 +675,7 @@ uni_isnonsp(unichar u)
return YES;
// FIXME check is uni_cop good for this
if (uni_cop(u))
if (GSPrivateUniCop(u))
return YES;
else
return NO;