* don't check messagefile for numbers, this allows the usage of

1.1 msgfiles with a 1.0.x compiler
This commit is contained in:
peter 2001-03-10 13:19:10 +00:00
parent e61d1f0ad1
commit 9be4aa216f
2 changed files with 26 additions and 28 deletions

View File

@ -150,17 +150,14 @@ const
var
f : text;
error,multiline : boolean;
code : integer;
numpart,numidx,
line,i,j,num : longint;
line,i,j : longint;
ptxt : pchar;
number,
s,s1 : string;
buf : pointer;
procedure err(const msgstr:string);
begin
writeln('error in line ',line,': ',msgstr);
writeln('*** PPC, file ',fn,', error in line ',line,': ',msgstr);
error:=true;
end;
@ -174,7 +171,7 @@ begin
{$I+}
if ioresult<>0 then
begin
WriteLn('*** message file '+fn+' not found ***');
WriteLn('*** PPC, can not open message file ',fn);
exit;
end;
settextbuf(f,buf^,bufsize);
@ -211,17 +208,6 @@ begin
end;
if j-i-1<>5 then
err('number length is not 5');
number:=Copy(s,i+1,j-i-1);
{ update the max index }
val(number,num,code);
numpart:=num div 1000;
numidx:=num mod 1000;
{ check range }
if numpart > msgparts then
err('number is to large')
else
if numidx >= msgidxmax[numpart] then
err('index is to large');
if s[j+1]='[' then
begin
inc(msgsize,j-i);
@ -348,10 +334,14 @@ begin
val(number,num,code);
numpart:=num div 1000;
numidx:=num mod 1000;
{ skip _ }
inc(hp1);
{ put the address in the idx, the numbers are already checked }
msgidx[numpart]^[numidx]:=hp1;
{ check range }
if (numpart <= msgparts) and (numidx < msgidxmax[numpart]) then
begin
{ skip _ }
inc(hp1);
{ put the address in the idx, the numbers are already checked }
msgidx[numpart]^[numidx]:=hp1;
end;
{ next string }
hp:=pchar(@hp[strlen(hp)+1]);
end;
@ -448,7 +438,11 @@ end;
end.
{
$Log$
Revision 1.5 2000-11-29 00:30:31 florian
Revision 1.6 2001-03-10 13:19:10 peter
* don't check messagefile for numbers, this allows the usage of
1.1 msgfiles with a 1.0.x compiler
Revision 1.5 2000/11/29 00:30:31 florian
* unused units removed from uses clause
* some changes for widestrings

View File

@ -123,8 +123,7 @@ begin
{ Load new message file }
if (msgfilename<>'') then
begin
if fileexists(msgfilename) then
LoadMsgFile(msgfilename);
LoadMsgFile(msgfilename);
msgfilename:='';
end;
end;
@ -172,7 +171,6 @@ procedure Toption.WriteLogo;
var
p : pchar;
begin
MaybeLoadMessageFile;
p:=MessagePchar(option_logo);
while assigned(p) do
Comment(V_Normal,GetMsgLine(p));
@ -211,6 +209,7 @@ var
s : string;
p : pchar;
begin
MaybeLoadMessageFile;
WriteLogo;
Lines:=4;
Message1(option_usage,system.paramstr(0));
@ -1451,6 +1450,9 @@ begin
end;
end;
{ Reload the messages file if necessary }
MaybeLoadMessageFile;
{ write logo if set }
if option.DoWriteLogo then
option.WriteLogo;
@ -1557,8 +1559,6 @@ begin
if (target_info.target in [target_i386_GO32V1,target_i386_GO32V2]) then
def_symbol('DPMI'); { MSDOS is not defined in BP when target is DPMI }
MaybeLoadMessageFile;
option.free;
Option:=nil;
end;
@ -1572,7 +1572,11 @@ finalization
end.
{
$Log$
Revision 1.34 2001-03-05 21:50:29 peter
Revision 1.35 2001-03-10 13:19:10 peter
* don't check messagefile for numbers, this allows the usage of
1.1 msgfiles with a 1.0.x compiler
Revision 1.34 2001/03/05 21:50:29 peter
* press enter moved to errore.msg
Revision 1.33 2001/03/03 12:41:22 jonas