From e1a164199da44b1fa1189f9d508a05a2137bf4bb Mon Sep 17 00:00:00 2001 From: cxl Date: Sun, 1 May 2011 19:07:44 +0000 Subject: [PATCH] *theide: Fixed include assist misbehaviour in Posix git-svn-id: svn://ultimatepp.org/upp/trunk@3390 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/Assist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/ide/Assist.cpp b/uppsrc/ide/Assist.cpp index 0d88a2f8f..50099935d 100644 --- a/uppsrc/ide/Assist.cpp +++ b/uppsrc/ide/Assist.cpp @@ -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)