Fix for busted completions (tab completion of directories was failing)

This commit is contained in:
ridiculousfish 2012-02-13 22:37:09 -08:00
parent afcda2f724
commit caf7a93382

View file

@ -822,7 +822,7 @@ static int wildcard_expand_internal( const wchar_t *wc,
{
res = 1;
completion_t data_to_push(base_dir);
if ( std::find( out.begin(), out.end(), data_to_push ) != out.end() ){
if (std::find( out.begin(), out.end(), data_to_push ) == out.end()) {
out.push_back( data_to_push);
}
}