LCL: fix DebugLnEnter/Exit

git-svn-id: trunk@28252 -
This commit is contained in:
martin 2010-11-15 19:37:38 +00:00
parent b467185a27
commit 78878863ea

View File

@ -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);