ICU-9996 Exclude OS390 from isspace call

X-SVN-Rev: 33410
This commit is contained in:
Michael Ow 2013-03-11 16:55:23 +00:00
parent a7758d2cd5
commit 8a51a0ecb5

View File

@ -1865,7 +1865,7 @@ static void loadLists(UPKGOptions *o, UErrorCode *status)
/* remove spaces at the beginning */
linePtr = line;
/* On z/OS, disable call to isspace (#9996). Investigate using uprv_isspace instead (#9999) */
#if U_PLATFORM == U_PF_OS390
#if U_PLATFORM != U_PF_OS390
while(isspace(*linePtr)) {
linePtr++;
}