mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 12:40:33 +02:00
SourceEditor: removed debugln
git-svn-id: trunk@25812 -
This commit is contained in:
parent
509ece6c49
commit
d8eb7e42ca
@ -234,11 +234,11 @@ begin
|
||||
end;
|
||||
|
||||
if ALastLinePos > FDebugMarkInfo.Count then begin
|
||||
debugln(['Request to set debug-mark out of range: max-count=',FDebugMarkInfo.Count,' Marks=',AFirstLinePos,' to=',ALastLinePos]);
|
||||
//debugln(['Request to set debug-mark out of range: max-count=',FDebugMarkInfo.Count,' Marks=',AFirstLinePos,' to=',ALastLinePos]);
|
||||
ALastLinePos := FDebugMarkInfo.Count;
|
||||
end;
|
||||
if AFirstLinePos < 1 then begin
|
||||
debugln(['Request to set debug-mark out of range: max-count=',FDebugMarkInfo.Count,' Marks=',AFirstLinePos,' to=',ALastLinePos]);
|
||||
//debugln(['Request to set debug-mark out of range: max-count=',FDebugMarkInfo.Count,' Marks=',AFirstLinePos,' to=',ALastLinePos]);
|
||||
AFirstLinePos := 1;
|
||||
end;
|
||||
for i := AFirstLinePos - 1 to ALastLinePos - 1 do
|
||||
|
Loading…
Reference in New Issue
Block a user