mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-11 22:03:09 -06:00
*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:
parent
28150bf977
commit
e1a164199d
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue