mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 00:54:03 +02:00
LCL: fix DebugLnEnter/Exit
git-svn-id: trunk@28252 -
This commit is contained in:
parent
b467185a27
commit
78878863ea
@ -2420,7 +2420,7 @@ begin
|
||||
write(DebugText^, s);
|
||||
end;
|
||||
{$endif}
|
||||
DebugNestAtBOL := (s <> '') and not (s[length(s)] in [#10,#13]);
|
||||
DebugNestAtBOL := (s = '') or (s[length(s)] in [#10,#13]);
|
||||
end;
|
||||
|
||||
procedure DBGOut(const s1, s2: string);
|
||||
|
Loading…
Reference in New Issue
Block a user