From 006bc13dadbf8d2aaf879d42151e1b25bc661994 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 28 Jun 2006 21:38:55 +0000 Subject: [PATCH] IDE compiler options: custom options are now stripped off special characters git-svn-id: trunk@9521 - --- ide/compileroptions.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ide/compileroptions.pp b/ide/compileroptions.pp index 2121c26d24..36e5ee2c22 100644 --- a/ide/compileroptions.pp +++ b/ide/compileroptions.pp @@ -2846,6 +2846,8 @@ begin else BaseDirectory:=GetParsedValue(pcosBaseDir); s:=TrimSearchPath(s,BaseDirectory); + end else if Option=pcosCustomOptions then begin + s:=SpecialCharsToSpaces(s); end; Result:=s; end;