SynEdit: Fixed case-insensitive search/replace regex. Issue #0023078

git-svn-id: trunk@39372 -
This commit is contained in:
martin 2012-11-25 19:45:44 +00:00
parent a1a464b0e2
commit db1bedfb1f

View File

@ -818,7 +818,7 @@ begin
// regex multi line whole word
repeat
LineStr:=Lines[y];
if ASupportUnicodeCase and (not fSensitive) then LineStr := UTF8LowerCase(LineStr);
if ASupportUnicodeCase and (not fSensitive) and (not fRegExpr) then LineStr := UTF8LowerCase(LineStr);
LineLen:=length(LineStr);
Line:=PChar(LineStr);
if not IsFirstLine then begin