mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 17:17:52 +02:00
codetools: fixed FilenameIsMatching on Windows
This commit is contained in:
parent
74a2cba2e2
commit
a0fddef59c
@ -1400,8 +1400,11 @@ function FilenameIsMatching(const Mask, Filename: string;
|
||||
begin
|
||||
if Filename='' then exit(false);
|
||||
if Mask='' then exit(true);
|
||||
{$IFDEF CaseInsensitiveFilenames}
|
||||
AnyCase:=false; // the anycase compares case sensitive, but not apply UTF-8 normalization, e.g. MacOS, so better use the default
|
||||
{$ENDIF}
|
||||
{$IFDEF VerboseFilenameIsMatching}
|
||||
debugln(['FilenameIsMatching2 Mask="',Mask,'" File="',Filename,'" Exactly=',MatchExactly]);
|
||||
debugln(['FilenameIsMatching Mask="',Mask,'" File="',Filename,'" Exactly=',MatchExactly]);
|
||||
{$ENDIF}
|
||||
|
||||
Result:=Check(PChar(Mask),PChar(Filename));
|
||||
|
Loading…
Reference in New Issue
Block a user