Remove unneccessary space for tab completion

This commit is contained in:
Nathaniel Olsen 2015-06-15 21:10:06 -05:00 committed by est31
parent bbf6f4fc25
commit 3ae8b92be6

@ -541,7 +541,7 @@ void ChatPrompt::nickCompletion(const std::list<std::string>& names, bool backwa
} }
} }
} }
std::wstring replacement = completions[replacement_index] + L" "; std::wstring replacement = completions[replacement_index];
if (word_end < m_line.size() && isspace(word_end)) if (word_end < m_line.size() && isspace(word_end))
++word_end; ++word_end;