SynEdit: fixed using for-var after loop.

This commit is contained in:
Martin 2025-03-01 12:37:15 +01:00
parent 7b77a98bcf
commit b50acfc112

View File

@ -439,9 +439,12 @@ begin
(CurrentEditor.CaretX -1 <= Length(iString)) then
begin
iIdentChars := CurrentEditor.IdentChars;
for cCol := CurrentEditor.CaretX -1 downto 1 do
cCol := CurrentEditor.CaretX -1;
while cCol > 0 do begin
if not (iString[cCol] in iIdentChars) then
break;
dec(cCol);
end;
Result := Copy( iString, cCol +1, CurrentEditor.CaretX - cCol -1);
end;
end;