mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 06:39:12 +02:00
codetools: clean up
git-svn-id: trunk@35734 -
This commit is contained in:
parent
34eceb1e57
commit
e3eb046488
@ -5018,9 +5018,8 @@ begin
|
||||
if (Txt=nil) or (Txt^=#0) then exit;
|
||||
TxtRun:=Txt;
|
||||
StartChar:=SearchWord^;
|
||||
repeat
|
||||
while (TxtRun^<>StartChar) and (TxtRun^<>#0) do inc(TxtRun);
|
||||
if TxtRun^=#0 then exit;
|
||||
while TxtRun^<>#0 do begin
|
||||
if TxtRun^=StartChar then begin
|
||||
CurSearchP:=SearchWord+1;
|
||||
CurTxtP:=TxtRun+1;
|
||||
while (CurTxtP^=CurSearchP^) and (CurTxtP^<>#0) do begin
|
||||
@ -5039,9 +5038,12 @@ begin
|
||||
inc(Count);
|
||||
end else
|
||||
inc(Count);
|
||||
TxtRun:=CurTxtP;
|
||||
continue;
|
||||
end;
|
||||
end;
|
||||
inc(TxtRun);
|
||||
until false;
|
||||
end;
|
||||
end;
|
||||
|
||||
function SubString(p: PChar; Count: SizeInt): string;
|
||||
|
Loading…
Reference in New Issue
Block a user