optimisations

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4233 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-05-10 06:35:41 +00:00
parent c71e8c0524
commit 8500c95ee2
5 changed files with 52 additions and 10 deletions

View file

@ -649,6 +649,14 @@ static IMP msInitImp; /* designated initialiser for mutable */
return result;
}
- (NSRange) rangeOfComposedCharacterSequenceAtIndex: (unsigned)anIndex
{
if (anIndex >= _count)
[NSException raise: NSRangeException format:@"Invalid location."];
return NSMakeRange(anIndex, 1);
}
@end