mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +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;
|
||||
}
|
||||
|
||||
while (iswblank(*src))
|
||||
while (iswspace(*src))
|
||||
{
|
||||
src++;
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ static int parse_fill_indexes( array_list_t *indexes,
|
|||
al_push(indexes, ind);
|
||||
src = end;
|
||||
count++;
|
||||
while (iswblank(*src)) src++;
|
||||
while (iswspace(*src)) src++;
|
||||
}
|
||||
|
||||
return count;
|
||||
|
|
Loading…
Reference in a new issue