More changes to fish pager to fix regressions. It didn't actually work.

This commit is contained in:
ridiculousfish 2012-02-09 01:39:08 -08:00
parent 19858c574d
commit 7e1b15a0cc

View file

@ -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);