mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 18:03:37 +08:00
Fix job_or_process_extent with command substitution
This commit is contained in:
parent
2018b9b217
commit
9374494d2b
|
@ -423,14 +423,14 @@ static void job_or_process_extent(const wchar_t *buff,
|
|||
finished=1;
|
||||
if (b)
|
||||
{
|
||||
*b = (wchar_t *)buff + tok_begin;
|
||||
*b = (wchar_t *)begin + tok_begin;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (a)
|
||||
{
|
||||
*a = (wchar_t *)buff + tok_begin+1;
|
||||
*a = (wchar_t *)begin + tok_begin+1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user