mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Use iswspace instead of the GNU extention iswblank
darcs-hash:20051125144434-ac50b-088a2a8066537f19f287f9dad1611a172addd053.gz
This commit is contained in:
parent
680c0aff05
commit
5974dd68b0
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue