mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 12:16:40 +00:00
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:
parent
55c596a150
commit
c22b722f1f
6 changed files with 76 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue