From f8c314a7b7f06f44c795b8eb8703d9afcf5b144e Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 22 May 2005 18:17:15 +0000 Subject: [PATCH] * changed fpc_read_text to use out instead of var git-svn-id: trunk@73 - --- .gitattributes | 1 + rtl/inc/compproc.inc | 20 ++++++++++---------- rtl/inc/text.inc | 20 ++++++++++---------- tests/webtbs/tw3970.pp | 23 +++++++++++++++++++++++ 4 files changed, 44 insertions(+), 20 deletions(-) create mode 100644 tests/webtbs/tw3970.pp diff --git a/.gitattributes b/.gitattributes index 87ba150f7b..8e2ca490de 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6113,6 +6113,7 @@ tests/webtbs/tw3939.pp svneol=native#text/plain tests/webtbs/tw3953a.pp svneol=native#text/plain tests/webtbs/tw3953b.pp svneol=native#text/plain tests/webtbs/tw3967.pp svneol=native#text/plain +tests/webtbs/tw3970.pp svneol=native#text/plain tests/webtbs/tw3971.pp svneol=native#text/plain tests/webtbs/tw3973.pp svneol=native#text/plain tests/webtbs/tw3977.pp svneol=native#text/plain diff --git a/rtl/inc/compproc.inc b/rtl/inc/compproc.inc index 01404408b6..2fdacee957 100644 --- a/rtl/inc/compproc.inc +++ b/rtl/inc/compproc.inc @@ -221,17 +221,17 @@ procedure fpc_vararray_put(var d : variant;const s : variant;indices : psizeint; Procedure fpc_Read_End(var f:Text); compilerproc; Procedure fpc_ReadLn_End(var f : Text); compilerproc; -Procedure fpc_Read_Text_ShortStr(var f : Text;var s : String); compilerproc; -Procedure fpc_Read_Text_PChar_As_Pointer(var f : Text;var s : PChar); compilerproc; -Procedure fpc_Read_Text_PChar_As_Array(var f : Text;var s : array of char); compilerproc; -Procedure fpc_Read_Text_AnsiStr(var f : Text;var s : AnsiString); compilerproc; -Procedure fpc_Read_Text_Char(var f : Text; var c : char); compilerproc; -Procedure fpc_Read_Text_SInt(var f : Text; var l :ValSInt); compilerproc; -Procedure fpc_Read_Text_UInt(var f : Text; var u :ValUInt); compilerproc; -Procedure fpc_Read_Text_Float(var f : Text; var v :ValReal); compilerproc; +Procedure fpc_Read_Text_ShortStr(var f : Text;out s : String); compilerproc; +Procedure fpc_Read_Text_PChar_As_Pointer(var f : Text;out s : PChar); compilerproc; +Procedure fpc_Read_Text_PChar_As_Array(var f : Text;out s : array of char); compilerproc; +Procedure fpc_Read_Text_AnsiStr(var f : Text;out s : AnsiString); compilerproc; +Procedure fpc_Read_Text_Char(var f : Text; out c : char); compilerproc; +Procedure fpc_Read_Text_SInt(var f : Text; out l :ValSInt); compilerproc; +Procedure fpc_Read_Text_UInt(var f : Text; out u :ValUInt); compilerproc; +Procedure fpc_Read_Text_Float(var f : Text; out v :ValReal); compilerproc; {$ifndef CPU64} -Procedure fpc_Read_Text_QWord(var f : text; var q : qword); compilerproc; -Procedure fpc_Read_Text_Int64(var f : text; var i : int64); compilerproc; +Procedure fpc_Read_Text_QWord(var f : text; out q : qword); compilerproc; +Procedure fpc_Read_Text_Int64(var f : text; out i : int64); compilerproc; {$endif CPU64} {$ifdef FPC_INCLUDE_SOFTWARE_MOD_DIV} diff --git a/rtl/inc/text.inc b/rtl/inc/text.inc index 7048b76451..7c672d07e5 100644 --- a/rtl/inc/text.inc +++ b/rtl/inc/text.inc @@ -938,19 +938,19 @@ Begin End; -Procedure fpc_Read_Text_ShortStr(var f : Text;var s : String); iocheck; [Public,Alias:'FPC_READ_TEXT_SHORTSTR']; {$ifdef hascompilerproc} compilerproc; {$endif} +Procedure fpc_Read_Text_ShortStr(var f : Text;out s : String); iocheck; [Public,Alias:'FPC_READ_TEXT_SHORTSTR']; {$ifdef hascompilerproc} compilerproc; {$endif} Begin s[0]:=chr(ReadPCharLen(f,pchar(@s[1]),high(s))); End; -Procedure fpc_Read_Text_PChar_As_Pointer(var f : Text;var s : PChar); iocheck; [Public,Alias:'FPC_READ_TEXT_PCHAR_AS_POINTER']; {$ifdef hascompilerproc} compilerproc; {$endif} +Procedure fpc_Read_Text_PChar_As_Pointer(var f : Text;out s : PChar); iocheck; [Public,Alias:'FPC_READ_TEXT_PCHAR_AS_POINTER']; {$ifdef hascompilerproc} compilerproc; {$endif} Begin pchar(s+ReadPCharLen(f,s,$7fffffff))^:=#0; End; -Procedure fpc_Read_Text_PChar_As_Array(var f : Text;var s : array of char); iocheck; [Public,Alias:'FPC_READ_TEXT_PCHAR_AS_ARRAY']; {$ifdef hascompilerproc} compilerproc; {$endif} +Procedure fpc_Read_Text_PChar_As_Array(var f : Text;out s : array of char); iocheck; [Public,Alias:'FPC_READ_TEXT_PCHAR_AS_ARRAY']; {$ifdef hascompilerproc} compilerproc; {$endif} var len: longint; Begin @@ -960,7 +960,7 @@ Begin End; -Procedure fpc_Read_Text_AnsiStr(var f : Text;var s : AnsiString); iocheck; [Public,Alias:'FPC_READ_TEXT_ANSISTR']; {$ifdef hascompilerproc} compilerproc; {$endif} +Procedure fpc_Read_Text_AnsiStr(var f : Text;out s : AnsiString); iocheck; [Public,Alias:'FPC_READ_TEXT_ANSISTR']; {$ifdef hascompilerproc} compilerproc; {$endif} var slen,len : longint; Begin @@ -976,7 +976,7 @@ Begin End; {$ifdef hascompilerproc} -procedure fpc_Read_Text_Char(var f : Text; var c: char); iocheck; [Public,Alias:'FPC_READ_TEXT_CHAR'];compilerproc; +procedure fpc_Read_Text_Char(var f : Text; out c: char); iocheck; [Public,Alias:'FPC_READ_TEXT_CHAR'];compilerproc; {$else hascompilerproc} Function fpc_Read_Text_Char(var f : Text):char;[Public,Alias:'FPC_READ_TEXT_CHAR']; {$endif hascompilerproc} @@ -1023,7 +1023,7 @@ end; {$ifdef hascompilerproc} -Procedure fpc_Read_Text_SInt(var f : Text; var l : ValSInt); iocheck; [Public,Alias:'FPC_READ_TEXT_SINT']; compilerproc; +Procedure fpc_Read_Text_SInt(var f : Text; out l : ValSInt); iocheck; [Public,Alias:'FPC_READ_TEXT_SINT']; compilerproc; {$else hascompilerproc} Function fpc_Read_Text_SInt(var f : Text):ValSInt;[Public,Alias:'FPC_READ_TEXT_SINT']; {$endif hascompilerproc} @@ -1085,7 +1085,7 @@ End; {$ifdef hascompilerproc} -Procedure fpc_Read_Text_UInt(var f : Text; var u : ValUInt); iocheck; [Public,Alias:'FPC_READ_TEXT_UINT']; compilerproc; +Procedure fpc_Read_Text_UInt(var f : Text; out u : ValUInt); iocheck; [Public,Alias:'FPC_READ_TEXT_UINT']; compilerproc; {$else hascompilerproc} Function fpc_Read_Text_UInt(var f : Text):ValUInt;[Public,Alias:'FPC_READ_TEXT_UINT']; {$endif hascompilerproc} @@ -1133,7 +1133,7 @@ End; {$ifdef hascompilerproc} -procedure fpc_Read_Text_Float(var f : Text; var v : ValReal); iocheck; [Public,Alias:'FPC_READ_TEXT_FLOAT']; compilerproc; +procedure fpc_Read_Text_Float(var f : Text; out v : ValReal); iocheck; [Public,Alias:'FPC_READ_TEXT_FLOAT']; compilerproc; {$else hascompilerproc} Function fpc_Read_Text_Float(var f : Text):ValReal;[Public,Alias:'FPC_READ_TEXT_FLOAT']; {$endif hascompilerproc} @@ -1183,7 +1183,7 @@ end; {$ifndef cpu64} {$ifdef hascompilerproc} -procedure fpc_Read_Text_QWord(var f : text; var q : qword); iocheck; [public,alias:'FPC_READ_TEXT_QWORD']; compilerproc; +procedure fpc_Read_Text_QWord(var f : text; out q : qword); iocheck; [public,alias:'FPC_READ_TEXT_QWORD']; compilerproc; {$else hascompilerproc} function fpc_Read_Text_QWord(var f : text) : qword;[public,alias:'FPC_READ_TEXT_QWORD']; {$endif hascompilerproc} @@ -1230,7 +1230,7 @@ Begin End; {$ifdef hascompilerproc} -procedure fpc_Read_Text_Int64(var f : text; var i : int64); iocheck; [public,alias:'FPC_READ_TEXT_INT64']; compilerproc; +procedure fpc_Read_Text_Int64(var f : text; out i : int64); iocheck; [public,alias:'FPC_READ_TEXT_INT64']; compilerproc; {$else hascompilerproc} function fpc_Read_Text_Int64(var f : text) : int64;[public,alias:'FPC_READ_TEXT_INT64']; {$ifdef hascompilerproc} compilerproc; {$endif} {$endif hascompilerproc} diff --git a/tests/webtbs/tw3970.pp b/tests/webtbs/tw3970.pp new file mode 100644 index 0000000000..501095ba91 --- /dev/null +++ b/tests/webtbs/tw3970.pp @@ -0,0 +1,23 @@ +{ %OPT=-Sew } + +{ Source provided for Free Pascal Bug Report 3970 } +{ Submitted by "Yiannis Dondos" on 2005-05-15 } +{ e-mail: dondos@otenet.gr } + +{$warnings+} +program test1; + +var + f: Text; + i: Integer; + s: ShortString; + +begin + Assign (f, 'test.dat'); + Reset (f); + + ReadLn (f, i); + ReadLn (f, s); // Warning! + + Close (f); +end.