*theide: Fixed include assist misbehaviour in Posix

git-svn-id: svn://ultimatepp.org/upp/trunk@3390 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-05-01 19:07:44 +00:00
parent 28150bf977
commit e1a164199d

View file

@ -105,7 +105,7 @@ void AssistEditor::CloseAssist()
bool isincludefnchar(int c)
{
return c && c != '<' && c != '>' && c != '?' &&
c != ' ' && c != '\"' && c != '/' && c != '\\' && c != '\n' && c < 65536;
c != ' ' && c != '\"' && c != '/' && c != '\\' && c >= 32 && c < 65536;
}
String AssistEditor::ReadIdBack(int q, bool include)