Use iswspace instead of the GNU extention iswblank

darcs-hash:20051125144434-ac50b-088a2a8066537f19f287f9dad1611a172addd053.gz
This commit is contained in:
axel 2005-11-26 00:44:34 +10:00
parent 680c0aff05
commit 5974dd68b0

View file

@ -83,7 +83,7 @@ static int parse_fill_indexes( array_list_t *indexes,
return -1; return -1;
} }
while (iswblank(*src)) while (iswspace(*src))
{ {
src++; src++;
} }
@ -105,7 +105,7 @@ static int parse_fill_indexes( array_list_t *indexes,
al_push(indexes, ind); al_push(indexes, ind);
src = end; src = end;
count++; count++;
while (iswblank(*src)) src++; while (iswspace(*src)) src++;
} }
return count; return count;