mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
* Source/NSString.m (-rangeOfString:options:range:locale:):
Correct result range with ICU codepath git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34880 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
391c16f630
commit
a9ae729b91
2 changed files with 8 additions and 3 deletions
|
@ -2162,17 +2162,17 @@ handle_printf_atsign (FILE *stream,
|
|||
if ((mask & NSBackwardsSearch) == NSBackwardsSearch)
|
||||
{
|
||||
if (matchLocation + matchLength == NSMaxRange(aRange))
|
||||
result = NSMakeRange(matchLocation, matchLength);
|
||||
result = NSMakeRange(aRange.location + matchLocation, matchLength);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (matchLocation == 0)
|
||||
result = NSMakeRange(matchLocation, matchLength);
|
||||
result = NSMakeRange(aRange.location + matchLocation, matchLength);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
result = NSMakeRange(matchLocation, matchLength);
|
||||
result = NSMakeRange(aRange.location + matchLocation, matchLength);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue