revert to get -isAbsolutePath regression tests to pass

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37600 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2014-01-13 21:28:49 +00:00
parent ed50aed50e
commit 9f540df74d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-01-13 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSString.m: Revert last change to get -isAbsolutePath working
on mingw again ... need to analyse startup problem.
2014-01-13 Marcus Mueller <znek@mulle-kybernetik.com>
* Source/NSString.m: absolute paths on __MINGW__ can also start

View file

@ -5044,7 +5044,7 @@ static NSFileManager *fm = nil;
if (c == pathSepChar())
{
#if defined(__MINGW__)
if ((GSPathHandlingUnix() == YES) || (GSPathHandlingRight() == YES))
if (GSPathHandlingUnix() == YES)
{
return YES;
}