From f2060d32620b41f216ac27ef23208b19eff5e758 Mon Sep 17 00:00:00 2001 From: mattias Date: Sat, 29 Mar 2014 08:12:32 +0000 Subject: [PATCH] IDE: do not report ~ as unusual char git-svn-id: trunk@44547 - --- ide/checkcompileropts.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/checkcompileropts.pas b/ide/checkcompileropts.pas index a6bc7709b7..c49582b035 100644 --- a/ide/checkcompileropts.pas +++ b/ide/checkcompileropts.pas @@ -152,7 +152,7 @@ begin #10,#13: Include(HasChars,ccoscNewLine); #0..#9,#11,#12,#14..#31: Include(HasChars,ccoscSpecialChars); '/','\': if Path[i]<>PathDelim then Include(HasChars,ccoscWrongPathDelim); - '@','#','$','&','*','(',')','[',']','+','~','<','>','?','|': Include(HasChars,ccoscUnusualChars); + '@','#','$','&','*','(',')','[',']','+','<','>','?','|': Include(HasChars,ccoscUnusualChars); #128..#255: Include(HasChars,ccoscNonASCII); end; end;