mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 05:28:49 +00:00
More changes to fish pager to fix regressions. It didn't actually work.
This commit is contained in:
parent
19858c574d
commit
7e1b15a0cc
1 changed files with 2 additions and 3 deletions
|
@ -901,14 +901,13 @@ static void join_completions( wcstring_list_t lst )
|
|||
else
|
||||
{
|
||||
const wchar_t *old = lst.at(i).c_str();
|
||||
wchar_t *old_end = wcschr( old, COMPLETE_SEP );
|
||||
const wchar_t *old_end = wcschr( old, COMPLETE_SEP );
|
||||
|
||||
if( old_end )
|
||||
{
|
||||
*old_end = 0;
|
||||
|
||||
wcstring foo;
|
||||
foo.append(old);
|
||||
foo.append(old, old_end - old);
|
||||
foo.push_back(COMPLETE_ITEM_SEP);
|
||||
foo.append(item);
|
||||
|
||||
|
|
Loading…
Reference in a new issue