summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/corelib/fpg_main.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/fpg_main.pas b/src/corelib/fpg_main.pas
index 1f841603..99ea0bdd 100644
--- a/src/corelib/fpg_main.pas
+++ b/src/corelib/fpg_main.pas
@@ -753,17 +753,17 @@ end;
procedure DebugLn(const s1, s2: TfpgString);
begin
- DebugLn(s1 + s2);
+ DebugLn(s1 + ' ' + s2);
end;
procedure DebugLn(const s1, s2, s3: TfpgString);
begin
- DebugLn(s1 + s2 + s3);
+ DebugLn(s1 + ' ' + s2 + ' ' + s3);
end;
procedure DebugLn(const s1, s2, s3, s4: TfpgString);
begin
- DebugLn(s1 + s2 + s3 + s4);
+ DebugLn(s1 + ' ' + s2 + ' ' + s3 + ' ' + s4);
end;
{ TfpgTimer }