summaryrefslogtreecommitdiff
path: root/compiler/verbose.pas
diff options
context:
space:
mode:
authordaniel <daniel@3ad0048d-3df7-0310-abae-a5850022a9f2>2005-07-23 08:37:26 +0000
committerdaniel <daniel@3ad0048d-3df7-0310-abae-a5850022a9f2>2005-07-23 08:37:26 +0000
commit777596c9c17f711cc4930a94752334d6fc9e4d67 (patch)
tree0ea5a82ffab4a760d7b312b933d9a14ec557d958 /compiler/verbose.pas
parent4fbe32f64e767862cdf056c654f85d0971411883 (diff)
downloadfpc-777596c9c17f711cc4930a94752334d6fc9e4d67.tar.gz
* Remove ifdef 1_0
* Add expirimental 32-bit x86_64 target to systems git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@729 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/verbose.pas')
-rw-r--r--compiler/verbose.pas51
1 files changed, 1 insertions, 50 deletions
diff --git a/compiler/verbose.pas b/compiler/verbose.pas
index 4a11923602..b15842cb45 100644
--- a/compiler/verbose.pas
+++ b/compiler/verbose.pas
@@ -582,80 +582,31 @@ var
procedure Message1(w:longint;const s1:string);
-{$ifdef ver1_0}
- var
- hs1 : string;
-{$endif ver1_0}
+
begin
MaybeLoadMessageFile;
-{$ifdef ver1_0}
- { 1.0.x is broken, it uses concatcopy instead of shortstring
- copy when passing array of shortstring. (PFV) }
- hs1:=s1;
- Msg2Comment(msg^.Get(w,[hs1]));
-{$else ver1_0}
Msg2Comment(msg^.Get(w,[s1]));
-{$endif ver1_0}
end;
procedure Message2(w:longint;const s1,s2:string);
-{$ifdef ver1_0}
- var
- hs1,hs2 : string;
-{$endif ver1_0}
begin
MaybeLoadMessageFile;
-{$ifdef ver1_0}
- { 1.0.x is broken, it uses concatcopy instead of shortstring
- copy when passing array of shortstring. (PFV) }
- hs1:=s1;
- hs2:=s2;
- Msg2Comment(msg^.Get(w,[hs1,hs2]));
-{$else ver1_0}
Msg2Comment(msg^.Get(w,[s1,s2]));
-{$endif ver1_0}
end;
procedure Message3(w:longint;const s1,s2,s3:string);
-{$ifdef ver1_0}
- var
- hs1,hs2,hs3 : string;
-{$endif ver1_0}
begin
MaybeLoadMessageFile;
-{$ifdef ver1_0}
- { 1.0.x is broken, it uses concatcopy instead of shortstring
- copy when passing array of shortstring. (PFV) }
- hs1:=s1;
- hs2:=s2;
- hs3:=s3;
- Msg2Comment(msg^.Get(w,[hs1,hs2,hs3]));
-{$else ver1_0}
Msg2Comment(msg^.Get(w,[s1,s2,s3]));
-{$endif ver1_0}
end;
procedure Message4(w:longint;const s1,s2,s3,s4:string);
-{$ifdef ver1_0}
- var
- hs1,hs2,hs3,hs4 : string;
-{$endif ver1_0}
begin
MaybeLoadMessageFile;
-{$ifdef ver1_0}
- { 1.0.x is broken, it uses concatcopy instead of shortstring
- copy when passing array of shortstring. (PFV) }
- hs1:=s1;
- hs2:=s2;
- hs3:=s3;
- hs4:=s4;
- Msg2Comment(msg^.Get(w,[hs1,hs2,hs3,hs4]));
-{$else ver1_0}
Msg2Comment(msg^.Get(w,[s1,s2,s3,s4]));
-{$endif ver1_0}
end;