From 1a32dab8e59f3f0d9f58500a59d9320723f6d38f Mon Sep 17 00:00:00 2001 From: juha Date: Fri, 18 Nov 2011 10:33:01 +0000 Subject: [PATCH] IDE: Fix a check for macros in search paths which caused unusual characters warnings. Issue #18135 git-svn-id: trunk@33609 - --- ide/frames/compiler_path_options.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/frames/compiler_path_options.pas b/ide/frames/compiler_path_options.pas index 7c26b4ca2c..406416079c 100644 --- a/ide/frames/compiler_path_options.pas +++ b/ide/frames/compiler_path_options.pas @@ -343,7 +343,7 @@ begin end; // check for special characters - if (not IDEMacros.StrHasMacros(CurPath)) then + if (not IDEMacros.StrHasMacros(ExpandedPath)) then begin FindSpecialCharsInPath(ExpandedPath, HasChars); if Ord(Level) <= Ord(ccomlWarning) then