mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-02 16:37:25 +01:00
SynEdit: Fixed case-insensitive search/replace regex. Issue #0023078
git-svn-id: trunk@39372 -
This commit is contained in:
parent
a1a464b0e2
commit
db1bedfb1f
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user