mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 19:49:18 +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);
|
write(DebugText^, s);
|
||||||
end;
|
end;
|
||||||
{$endif}
|
{$endif}
|
||||||
DebugNestAtBOL := (s <> '') and not (s[length(s)] in [#10,#13]);
|
DebugNestAtBOL := (s = '') or (s[length(s)] in [#10,#13]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure DBGOut(const s1, s2: string);
|
procedure DBGOut(const s1, s2: string);
|
||||||
|
Loading…
Reference in New Issue
Block a user